aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MAINTAINERS10
-rw-r--r--sound/oss/soundcard.c4
-rw-r--r--sound/pci/hda/patch_sigmatel.c2
3 files changed, 13 insertions, 3 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index d45828145e3a..7679bf32f7bb 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -5030,6 +5030,12 @@ F: drivers/media/common/saa7146*
5030F: drivers/media/video/*7146* 5030F: drivers/media/video/*7146*
5031F: include/media/*7146* 5031F: include/media/*7146*
5032 5032
5033SAMSUNG AUDIO (ASoC) DRIVERS
5034M: Jassi Brar <jassi.brar@samsung.com>
5035L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5036S: Supported
5037F: sound/soc/s3c24xx
5038
5033TLG2300 VIDEO4LINUX-2 DRIVER 5039TLG2300 VIDEO4LINUX-2 DRIVER
5034M: Huang Shijie <shijie8@gmail.com> 5040M: Huang Shijie <shijie8@gmail.com>
5035M: Kang Yong <kangyong@telegent.com> 5041M: Kang Yong <kangyong@telegent.com>
@@ -6472,8 +6478,10 @@ F: include/linux/wm97xx.h
6472WOLFSON MICROELECTRONICS DRIVERS 6478WOLFSON MICROELECTRONICS DRIVERS
6473M: Mark Brown <broonie@opensource.wolfsonmicro.com> 6479M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6474M: Ian Lartey <ian@opensource.wolfsonmicro.com> 6480M: Ian Lartey <ian@opensource.wolfsonmicro.com>
6481M: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
6482T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
6475T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus 6483T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
6476W: http://opensource.wolfsonmicro.com/node/8 6484W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
6477S: Supported 6485S: Supported
6478F: Documentation/hwmon/wm83?? 6486F: Documentation/hwmon/wm83??
6479F: drivers/leds/leds-wm83*.c 6487F: drivers/leds/leds-wm83*.c
diff --git a/sound/oss/soundcard.c b/sound/oss/soundcard.c
index 92aa762ffb7e..07f803e6d203 100644
--- a/sound/oss/soundcard.c
+++ b/sound/oss/soundcard.c
@@ -391,11 +391,11 @@ static long sound_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
391 case SND_DEV_DSP: 391 case SND_DEV_DSP:
392 case SND_DEV_DSP16: 392 case SND_DEV_DSP16:
393 case SND_DEV_AUDIO: 393 case SND_DEV_AUDIO:
394 return audio_ioctl(dev, file, cmd, p); 394 ret = audio_ioctl(dev, file, cmd, p);
395 break; 395 break;
396 396
397 case SND_DEV_MIDIN: 397 case SND_DEV_MIDIN:
398 return MIDIbuf_ioctl(dev, file, cmd, p); 398 ret = MIDIbuf_ioctl(dev, file, cmd, p);
399 break; 399 break;
400 400
401 } 401 }
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c
index 95148e58026c..c16c5ba0fda0 100644
--- a/sound/pci/hda/patch_sigmatel.c
+++ b/sound/pci/hda/patch_sigmatel.c
@@ -1747,6 +1747,8 @@ static struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = {
1747 "HP dv6", STAC_HP_DV5), 1747 "HP dv6", STAC_HP_DV5),
1748 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3061, 1748 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3061,
1749 "HP dv6", STAC_HP_DV5), /* HP dv6-1110ax */ 1749 "HP dv6", STAC_HP_DV5), /* HP dv6-1110ax */
1750 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x363e,
1751 "HP DV6", STAC_HP_DV5),
1750 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010, 1752 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010,
1751 "HP", STAC_HP_DV5), 1753 "HP", STAC_HP_DV5),
1752 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233, 1754 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,