aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2005-05-25 16:41:43 +0200
committerJaroslav Kysela <perex@suse.cz>2005-05-29 10:14:53 +0200
commit033a1f10923bdc3646750eef471a618f9d4c074b (patch)
treedd43abc3ce2dca45c3bbb397beed5692e26e0096 /sound/pci
parent[ALSA] Use standard form for URL (diff)
downloadlinux-dev-033a1f10923bdc3646750eef471a618f9d4c074b.tar.xz
linux-dev-033a1f10923bdc3646750eef471a618f9d4c074b.zip
[ALSA] hda-code: Fix the array size of codec list
HDA Codec driver Fixed the wrong array size of the codec pointer list. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r--sound/pci/hda/hda_codec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h
index 43fc245d9a62..1b1203539ea6 100644
--- a/sound/pci/hda/hda_codec.h
+++ b/sound/pci/hda/hda_codec.h
@@ -419,7 +419,7 @@ struct hda_bus {
/* codec linked list */
struct list_head codec_list;
- struct hda_codec *caddr_tbl[HDA_MAX_CODEC_ADDRESS]; /* caddr -> codec */
+ struct hda_codec *caddr_tbl[HDA_MAX_CODEC_ADDRESS + 1]; /* caddr -> codec */
struct semaphore cmd_mutex;