Skip to content

Commit

Permalink
Merge branch 'topic/oss-fix' into for-linus
Browse files Browse the repository at this point in the history
  • Loading branch information
tiwai committed Mar 23, 2009
2 parents 4c5ecb7 + e5bf484 commit 9fb5430
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 38 deletions.
23 changes: 0 additions & 23 deletions Documentation/sound/oss/CS4232

This file was deleted.

2 changes: 1 addition & 1 deletion Documentation/sound/oss/Introduction
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Notes:
additional features.

2. The commercial OSS driver may be obtained from the site:
http://www/opensound.com. This may be used for cards that
http://www.opensound.com. This may be used for cards that
are unsupported by the kernel driver, or may be used
by other operating systems.

Expand Down
4 changes: 2 additions & 2 deletions sound/oss/ad1848.c
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ static void wait_for_calibration(ad1848_info * devc)
while (timeout > 0 && (ad_read(devc, 11) & 0x20))
timeout--;
if (ad_read(devc, 11) & 0x20)
if ( (devc->model != MD_1845) || (devc->model != MD_1845_SSCAPE))
if ((devc->model != MD_1845) && (devc->model != MD_1845_SSCAPE))
printk(KERN_WARNING "ad1848: Auto calibration timed out(3).\n");
}

Expand Down Expand Up @@ -2107,7 +2107,7 @@ int ad1848_control(int cmd, int arg)
switch (cmd)
{
case AD1848_SET_XTAL: /* Change clock frequency of AD1845 (only ) */
if (devc->model != MD_1845 || devc->model != MD_1845_SSCAPE)
if (devc->model != MD_1845 && devc->model != MD_1845_SSCAPE)
return -EINVAL;
spin_lock_irqsave(&devc->lock,flags);
ad_enter_MCE(devc);
Expand Down
2 changes: 1 addition & 1 deletion sound/oss/dmabuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ int DMAbuf_sync(int dev)
DMAbuf_launch_output(dev, dmap);
adev->dmap_out->flags |= DMA_SYNCING;
adev->dmap_out->underrun_count = 0;
while (!signal_pending(current) && n++ <= adev->dmap_out->nbufs &&
while (!signal_pending(current) && n++ < adev->dmap_out->nbufs &&
adev->dmap_out->qlen && adev->dmap_out->underrun_count == 0) {
long t = dmabuf_timeout(dmap);
spin_unlock_irqrestore(&dmap->lock,flags);
Expand Down
4 changes: 1 addition & 3 deletions sound/oss/pas2_card.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,7 @@ static int __init config_pas_hw(struct address_info *hw_config)
* 0x80
*/ , 0xB88);

pas_write(0x80
| joystick?0x40:0
,0xF388);
pas_write(0x80 | (joystick ? 0x40 : 0), 0xF388);

if (pas_irq < 0 || pas_irq > 15)
{
Expand Down
12 changes: 6 additions & 6 deletions sound/oss/pss.c
Original file line number Diff line number Diff line change
Expand Up @@ -457,10 +457,9 @@ static void pss_mixer_reset(pss_confdata *devc)
}
}

static int set_volume_mono(unsigned __user *p, int *aleft)
static int set_volume_mono(unsigned __user *p, unsigned int *aleft)
{
int left;
unsigned volume;
unsigned int left, volume;
if (get_user(volume, p))
return -EFAULT;

Expand All @@ -471,10 +470,11 @@ static int set_volume_mono(unsigned __user *p, int *aleft)
return 0;
}

static int set_volume_stereo(unsigned __user *p, int *aleft, int *aright)
static int set_volume_stereo(unsigned __user *p,
unsigned int *aleft,
unsigned int *aright)
{
int left, right;
unsigned volume;
unsigned int left, right, volume;
if (get_user(volume, p))
return -EFAULT;

Expand Down
3 changes: 1 addition & 2 deletions sound/oss/sequencer.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ int sequencer_write(int dev, struct file *file, const char __user *buf, int coun
{
unsigned char event_rec[EV_SZ], ev_code;
int p = 0, c, ev_size;
int err;
int mode = translate_mode(file);

dev = dev >> 4;
Expand Down Expand Up @@ -285,7 +284,7 @@ int sequencer_write(int dev, struct file *file, const char __user *buf, int coun
{
if (!midi_opened[event_rec[2]])
{
int mode;
int err, mode;
int dev = event_rec[2];

if (dev >= max_mididev || midi_devs[dev]==NULL)
Expand Down

0 comments on commit 9fb5430

Please sign in to comment.