diff options
author | Takashi Iwai <tiwai@suse.de> | 2007-10-11 11:21:21 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2007-10-16 16:51:11 +0200 |
commit | a3a2f429e55997e3b7a0c23baf1208991970ecc1 (patch) | |
tree | cdf8db57f724a121c869084efffdb77db5208137 /sound | |
parent | 5e915bb3677f1369223a87e488c340236f81bfc2 (diff) | |
download | linux-3.10-a3a2f429e55997e3b7a0c23baf1208991970ecc1.tar.gz linux-3.10-a3a2f429e55997e3b7a0c23baf1208991970ecc1.tar.bz2 linux-3.10-a3a2f429e55997e3b7a0c23baf1208991970ecc1.zip |
[ALSA] hda-codec - Fix input_mux numbers for vaio stac92xx
My bad, I forgot to update the num_items field when added a new item
to vaio_mux items table, so the last item 'PCM' disappeared.
Now it has the right number 3.
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_sigmatel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index 9fae4f1296b..8b3576007d4 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c @@ -2875,7 +2875,7 @@ static hda_nid_t vaio_adcs[] = { 0x8 /*,0x6*/ }; static hda_nid_t vaio_mux_nids[] = { 0x15 }; static struct hda_input_mux vaio_mux = { - .num_items = 2, + .num_items = 3, .items = { /* { "HP", 0x0 }, */ { "Mic Jack", 0x1 }, |