summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorSasha Khapyorsky <sashak@smlink.com>2005-09-13 11:25:54 +0200
committerJaroslav Kysela <perex@suse.cz>2005-10-07 14:45:29 +0200
commit84802f0df3425ae0f9987af0d35ea19910479ec0 (patch)
treee9d16abddbd49055f1b8273491585f565a34d948 /sound
parent27bcaa693c866b9bccf94ee5b60eaf705e90c341 (diff)
downloadlinux-0-day-84802f0df3425ae0f9987af0d35ea19910479ec0.tar.gz
linux-0-day-84802f0df3425ae0f9987af0d35ea19910479ec0.tar.xz
[ALSA] hda-codec - 'empty' generic mfg-only codec
HDA generic driver This creates 'empty' hda generic for unknown MFG-only codecs. Signed-off-by: Sasha Khapyorsky <sashak@smlink.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/hda_generic.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/pci/hda/hda_generic.c b/sound/pci/hda/hda_generic.c
index 5b829a1a4c60e..d0eb9f2250aa0 100644
--- a/sound/pci/hda/hda_generic.c
+++ b/sound/pci/hda/hda_generic.c
@@ -881,10 +881,8 @@ int snd_hda_parse_generic_codec(struct hda_codec *codec)
struct hda_gspec *spec;
int err;
- if(!codec->afg) {
- snd_printdd("hda_generic: no generic modem yet\n");
- return -ENODEV;
- }
+ if(!codec->afg)
+ return 0;
spec = kzalloc(sizeof(*spec), GFP_KERNEL);
if (spec == NULL) {