diff options
author | Takashi Iwai | 2007-03-28 15:11:53 +0200 |
---|---|---|
committer | Jaroslav Kysela | 2007-05-11 16:55:54 +0200 |
commit | d3091fad4a4902185c3ce0b77a847ecafcb3f006 (patch) | |
tree | 0e238b713555799aa7df46d76d661e921d1c275f /sound | |
parent | [ALSA] snd-aoa-i2sbus: use MODULE_DEVICE_TABLE instead of plain MODULE_ALIAS (diff) | |
download | kernel-qcow2-linux-d3091fad4a4902185c3ce0b77a847ecafcb3f006.tar.gz kernel-qcow2-linux-d3091fad4a4902185c3ce0b77a847ecafcb3f006.tar.xz kernel-qcow2-linux-d3091fad4a4902185c3ce0b77a847ecafcb3f006.zip |
[ALSA] hda-codec - Fix missing array terminators
Added missing array terminators in patch_conexant.c.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/patch_conexant.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_conexant.c b/sound/pci/hda/patch_conexant.c index c7fb0b8dfb8f..efb95dc2d6db 100644 --- a/sound/pci/hda/patch_conexant.c +++ b/sound/pci/hda/patch_conexant.c @@ -632,11 +632,13 @@ static struct hda_verb cxt5045_init_verbs[] = { static struct hda_verb cxt5045_hp_sense_init_verbs[] = { /* pin sensing on HP jack */ {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT}, + { } /* end */ }; static struct hda_verb cxt5045_mic_sense_init_verbs[] = { /* pin sensing on HP jack */ {0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT}, + { } /* end */ }; #ifdef CONFIG_SND_DEBUG |