diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-02-27 17:36:33 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-03-16 17:32:12 -0700 |
commit | d503859c352ae9fc01aa95ef4a7ac904879e49d8 (patch) | |
tree | 0f01b134367ca4908c08d049e76ca57092745174 | |
parent | 0d0ed5ca7301baf01bef6bf1d81c6966bde479d4 (diff) |
ALSA: hda - Fix digital mic on dell-m4-1 and dell-m4-3
commit ea18aa464452c3e6550320d247c0306aaa2d156f upstream.
Fix num_dmuxes initialization for dell-m4-1 and dell-m4-3 models
of IDT 92HD71bxx codec, which was wrongly set to zero.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-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 1f9fcfe06db..96f4c8d8792 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c @@ -4668,7 +4668,7 @@ again: case STAC_DELL_M4_3: spec->num_dmics = 1; spec->num_smuxes = 0; - spec->num_dmuxes = 0; + spec->num_dmuxes = 1; break; default: spec->num_dmics = STAC92HD71BXX_NUM_DMICS; |