From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A58FAC169C4 for ; Tue, 29 Jan 2019 11:47:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5F7EF2086C for ; Tue, 29 Jan 2019 11:47:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1548762477; bh=IBzeetOUZlN9GPb1u0owrhMZnyxOl6W0tAUaypIreNw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=esfxCGLpGMv77YnX+rp2ExRFpDNw19N4prQOhPG3S+s2KTjzcpiY+tR4PQ0wEmupj /8mxtMHZdV+JAzTSieGJbSYsFyifqWAmtOZrvDftCWQxSM8qpB6Z/LNiFE4d2tmoCR nnNhUTrWqn/V1UVyvbzyGf6B3hlDpXdB/4XzDUhw= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731252AbfA2Lrz (ORCPT ); Tue, 29 Jan 2019 06:47:55 -0500 Received: from mail.kernel.org ([198.145.29.99]:38676 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729851AbfA2Lrx (ORCPT ); Tue, 29 Jan 2019 06:47:53 -0500 Received: from localhost (5356596B.cm-6-7b.dynamic.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 123ED20882; Tue, 29 Jan 2019 11:47:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1548762472; bh=IBzeetOUZlN9GPb1u0owrhMZnyxOl6W0tAUaypIreNw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nxRPtOiBxqykAZWJbFxd+vOQxiZOC1WaaCucPhbWmkx/OQJW4PZNR7F6pirOIYHCu jjjeIgKCDQJO2h3GGye9OFc7I0aTmlx0kGY3QVDr4jYMFuzC2KCUNGzKzdSX5P0Fn6 babs8kEY/bp5G56fLnLzjzQgPhkkTyj90l8zvCv4= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Anthony Wong , Takashi Iwai Subject: [PATCH 4.14 17/68] ALSA: hda - Add mute LED support for HP ProBook 470 G5 Date: Tue, 29 Jan 2019 12:35:39 +0100 Message-Id: <20190129113133.038266731@linuxfoundation.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190129113131.751891514@linuxfoundation.org> References: <20190129113131.751891514@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review X-Patchwork-Hint: ignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Anthony Wong commit 699390381a7bae2fab01a22f742a17235c44ed8a upstream. Support speaker and mic mute LEDs on HP ProBook 470 G5. BugLink: https://bugs.launchpad.net/bugs/1811254 Signed-off-by: Anthony Wong Cc: Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/pci/hda/patch_conexant.c | 1 + 1 file changed, 1 insertion(+) --- a/sound/pci/hda/patch_conexant.c +++ b/sound/pci/hda/patch_conexant.c @@ -969,6 +969,7 @@ static const struct snd_pci_quirk cxt506 SND_PCI_QUIRK(0x103c, 0x814f, "HP ZBook 15u G3", CXT_FIXUP_MUTE_LED_GPIO), SND_PCI_QUIRK(0x103c, 0x822e, "HP ProBook 440 G4", CXT_FIXUP_MUTE_LED_GPIO), SND_PCI_QUIRK(0x103c, 0x836e, "HP ProBook 455 G5", CXT_FIXUP_MUTE_LED_GPIO), + SND_PCI_QUIRK(0x103c, 0x837f, "HP ProBook 470 G5", CXT_FIXUP_MUTE_LED_GPIO), SND_PCI_QUIRK(0x103c, 0x8299, "HP 800 G3 SFF", CXT_FIXUP_HP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x829a, "HP 800 G3 DM", CXT_FIXUP_HP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x8455, "HP Z2 G4", CXT_FIXUP_HP_MIC_NO_PRESENCE),