From patchwork Tue Mar 4 03:41:33 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hui Wang X-Patchwork-Id: 326130 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) by ozlabs.org (Postfix) with ESMTP id 5BF6F2C00AD for ; Tue, 4 Mar 2014 14:44:14 +1100 (EST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1WKgH4-0001Ty-Au; Tue, 04 Mar 2014 03:44:10 +0000 Received: from mail-pb0-f50.google.com ([209.85.160.50]) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1WKgGv-0001RS-7c for kernel-team@lists.ubuntu.com; Tue, 04 Mar 2014 03:44:01 +0000 Received: by mail-pb0-f50.google.com with SMTP id md12so4645868pbc.9 for ; Mon, 03 Mar 2014 19:44:00 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=kzS/26OenSuyr00DKoTEYuAB2PIC7YNskDFtj6UNPh4=; b=bDUmoAlC1MUvPxGRuhIqTOtJ5DRSZYrkKTFd9Upkv9aPaxgD04Is7qslp5dGABL0II j3Owsw7TTnLFgwMG66BqwkKo7a2VNcMO7tRzauRpP5uPSLmrrotI9aMsG7UmcNAOeB/H 39g4XZ13yIfYA24wKJI5E9IOOjzj+LZSacqdW5HTl2MrIB0vy+VcLNxBH7Z8moqgAsoh IiO4RfjkaTFn9lm75jPqw2HTKuieYsFC4HwrSotKBzr+5MST06GhRe1OyLe3gGowaSUk SiRtcyNBMEoOnjNmo5qOUL+Q86wUToYcKa2Ogg8XDcmxLePQcmFkoQnF7Rc/ZF7M2vC2 7glQ== X-Gm-Message-State: ALoCoQlhO9rkQChwj7KZPnRnHOuDPeEdSqf6vLW8W+bWmB0pXjgpF9CnoYw9iQk66N3Ito56YVMr X-Received: by 10.68.0.35 with SMTP id 3mr23297022pbb.52.1393904640228; Mon, 03 Mar 2014 19:44:00 -0800 (PST) Received: from localhost.localdomain ([116.213.97.190]) by mx.google.com with ESMTPSA id eb5sm96151540pad.22.2014.03.03.19.43.58 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 03 Mar 2014 19:43:59 -0800 (PST) From: Hui Wang To: kernel-team@lists.ubuntu.com Subject: [Saucy PATCH 2/2] ALSA: hda/realtek - Add more entry for enable HP mute led Date: Tue, 4 Mar 2014 11:41:33 +0800 Message-Id: <1393904493-17329-2-git-send-email-hui.wang@canonical.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1393904493-17329-1-git-send-email-hui.wang@canonical.com> References: <1393904493-17329-1-git-send-email-hui.wang@canonical.com> X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.14 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: kernel-team-bounces@lists.ubuntu.com From: Kailang Yang BugLink: http://bugs.launchpad.net/bugs/1287497 commit fce0a0c72618e021e29ed4e051ce6b42b218c5e6 upstream I lost this SSID. Add it into the fixup table. Signed-off-by: Kailang Yang Signed-off-by: Takashi Iwai Signed-off-by: Hui Wang --- sound/pci/hda/patch_realtek.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index cb358e0..b082521 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -3947,6 +3947,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = { SND_PCI_QUIRK(0x103c, 0x228a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), SND_PCI_QUIRK(0x103c, 0x228c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), + SND_PCI_QUIRK(0x103c, 0x228d, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), SND_PCI_QUIRK(0x103c, 0x22c6, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),