aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2010-07-30 10:36:29 +0200
committerTakashi Iwai <tiwai@suse.de>2010-07-30 10:36:29 +0200
commit5aacc2186cc075880a9eca42e6b7f9bb3096d0ea (patch)
treea6e5fa4de2a6dbf5029cb4d1cbc36f1ce0528771 /sound/pci
parentALSA: hda - Rename iMic to Int Mic on Lenovo NB0763 (diff)
downloadlinux-dev-5aacc2186cc075880a9eca42e6b7f9bb3096d0ea.tar.xz
linux-dev-5aacc2186cc075880a9eca42e6b7f9bb3096d0ea.zip
ALSA: hda - Make error messages more verbose
Add a prefix and more information for error messages regarding the connection-list in hda_codec.c. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r--sound/pci/hda/hda_codec.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c
index e5c3484388f0..d9d1c91dfd1b 100644
--- a/sound/pci/hda/hda_codec.c
+++ b/sound/pci/hda/hda_codec.c
@@ -396,15 +396,18 @@ int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
}
for (n = prev_nid + 1; n <= val; n++) {
if (conns >= max_conns) {
- snd_printk(KERN_ERR
- "Too many connections\n");
+ snd_printk(KERN_ERR "hda_codec: "
+ "Too many connections %d for NID 0x%x\n",
+ conns, nid);
return -EINVAL;
}
conn_list[conns++] = n;
}
} else {
if (conns >= max_conns) {
- snd_printk(KERN_ERR "Too many connections\n");
+ snd_printk(KERN_ERR "hda_codec: "
+ "Too many connections %d for NID 0x%x\n",
+ conns, nid);
return -EINVAL;
}
conn_list[conns++] = val;