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.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,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 C7D31C76186 for ; Mon, 29 Jul 2019 19:44:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 970DE21655 for ; Mon, 29 Jul 2019 19:44:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1564429481; bh=corQFp4clWMPuFalfLX5X9dp7Kx3GlivWNOEEpdPTJM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=Eta1DByrn5kqTTwtYWnwSw3QP+FhlZFvqOPvBDr1yuM/2EXbFDpdJ2f+X9dq6IfPA RVrzz7xMnnM6uICD2EqAU/AjnGLMVL4ldA24K9iap+mmBcAaR3/yPoQ1tr6gzL5HCy fP3k/Zt0i7ByWewiLC8odD/OHa0q9TFKQfjlxLzs= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389546AbfG2Toh (ORCPT ); Mon, 29 Jul 2019 15:44:37 -0400 Received: from mail.kernel.org ([198.145.29.99]:33202 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389808AbfG2Tog (ORCPT ); Mon, 29 Jul 2019 15:44:36 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.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 B2818205F4; Mon, 29 Jul 2019 19:44:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1564429476; bh=corQFp4clWMPuFalfLX5X9dp7Kx3GlivWNOEEpdPTJM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YfwLHaDyepVlS2MkuCGvVc6wd8vnTvCj9uCGjJ+V4GInUJ2qn+11KM/W3SPSEafN8 8+0bhVLoCMBquOQrlczto98atJhlHxpCJq9CGyOsN8dhX3qPTe1b2qctHYmzKkjh4P bBzchvbxDQYNCniqvgPh47HbAzEy3jTXEj4ECT9I= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Hui Wang , Takashi Iwai Subject: [PATCH 4.19 109/113] ALSA: hda - Add a conexant codec entry to let mute led work Date: Mon, 29 Jul 2019 21:23:16 +0200 Message-Id: <20190729190721.107897071@linuxfoundation.org> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20190729190655.455345569@linuxfoundation.org> References: <20190729190655.455345569@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Hui Wang commit 3f8809499bf02ef7874254c5e23fc764a47a21a0 upstream. This conexant codec isn't in the supported codec list yet, the hda generic driver can drive this codec well, but on a Lenovo machine with mute/mic-mute leds, we need to apply CXT_FIXUP_THINKPAD_ACPI to make the leds work. After adding this codec to the list, the driver patch_conexant.c will apply THINKPAD_ACPI to this machine. Cc: stable@vger.kernel.org Signed-off-by: Hui Wang 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 @@ -1096,6 +1096,7 @@ static int patch_conexant_auto(struct hd */ static const struct hda_device_id snd_hda_id_conexant[] = { + HDA_CODEC_ENTRY(0x14f11f86, "CX8070", patch_conexant_auto), HDA_CODEC_ENTRY(0x14f12008, "CX8200", patch_conexant_auto), HDA_CODEC_ENTRY(0x14f15045, "CX20549 (Venice)", patch_conexant_auto), HDA_CODEC_ENTRY(0x14f15047, "CX20551 (Waikiki)", patch_conexant_auto),