From: David Henningsson Date: Wed, 21 Nov 2012 09:03:10 +0000 (+0100) Subject: ALSA: hda - Cirrus: Correctly clear line_out_pins when moving to speaker X-Git-Tag: v3.4.21~39 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de134053d4084ef640a44f9fd848cb607d2d0457;p=platform%2Fkernel%2Flinux-stable.git ALSA: hda - Cirrus: Correctly clear line_out_pins when moving to speaker commit 34c3d1926bdaf45d3a891dd577482abcdd9faa34 upstream. If this array is not cleared, the jack related code later might fail to create "Internal Speaker Phantom Jack" on Dell Inspiron 3420 and Dell Vostro 2420. BugLink: https://bugs.launchpad.net/bugs/1076840 Signed-off-by: David Henningsson Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- diff --git a/sound/pci/hda/patch_cirrus.c b/sound/pci/hda/patch_cirrus.c index 057f95a2bbb0..3605fbb6ef15 100644 --- a/sound/pci/hda/patch_cirrus.c +++ b/sound/pci/hda/patch_cirrus.c @@ -460,6 +460,7 @@ static int parse_output(struct hda_codec *codec) memcpy(cfg->speaker_pins, cfg->line_out_pins, sizeof(cfg->speaker_pins)); cfg->line_outs = 0; + memset(cfg->line_out_pins, 0, sizeof(cfg->line_out_pins)); } return 0;