summaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/hda_codec.c
diff options
context:
space:
mode:
authorTakashi Iwai2005-05-13 16:06:14 +0200
committerJaroslav Kysela2005-05-29 10:10:30 +0200
commit680ff0ac6d0c84f14a2e540f64521a9fa80d8661 (patch)
treef532789bee72426aae3305ad57fdacd97d1ed00d /sound/pci/hda/hda_codec.c
parent[ALSA] make code static (diff)
downloadkernel-qcow2-linux-680ff0ac6d0c84f14a2e540f64521a9fa80d8661.tar.gz
kernel-qcow2-linux-680ff0ac6d0c84f14a2e540f64521a9fa80d8661.tar.xz
kernel-qcow2-linux-680ff0ac6d0c84f14a2e540f64521a9fa80d8661.zip
[ALSA] Suppress error message
HDA Codec driver Suppressing the error message regarding no AFG. This is often harmless (e.g. probing a modem codec). Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_codec.c')
-rw-r--r--sound/pci/hda/hda_codec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c
index 70e3cb6dd252..56941031ab0d 100644
--- a/sound/pci/hda/hda_codec.c
+++ b/sound/pci/hda/hda_codec.c
@@ -509,7 +509,7 @@ int snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr,
/* FIXME: support for multiple AFGs? */
codec->afg = look_for_afg_node(codec);
if (! codec->afg) {
- snd_printk(KERN_ERR "hda_codec: no AFG node found\n");
+ snd_printdd("hda_codec: no AFG node found\n");
snd_hda_codec_free(codec);
return -ENODEV;
}