Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C6AFFC05027 for ; Thu, 9 Feb 2023 02:14:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231712AbjBICOR (ORCPT ); Wed, 8 Feb 2023 21:14:17 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49608 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230363AbjBICOQ (ORCPT ); Wed, 8 Feb 2023 21:14:16 -0500 Received: from mail-m11880.qiye.163.com (mail-m11880.qiye.163.com [115.236.118.80]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B6C7410ED for ; Wed, 8 Feb 2023 18:14:14 -0800 (PST) Received: from localhost.localdomain (unknown [27.18.58.194]) by mail-m11880.qiye.163.com (Hmail) with ESMTPA id BECA32042B; Thu, 9 Feb 2023 10:14:08 +0800 (CST) From: bo liu To: perex@perex.cz, tiwai@suse.com Cc: tangmeng@uniontech.com, huangwenhuia@uniontech.com, alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org, bo.liu@senarytech.com Subject: [PATCH] ALSA:hda/conexant:add a new hda codec SN6180 Date: Thu, 9 Feb 2023 10:13:48 +0800 Message-Id: <1675908828-1012-1-git-send-email-bo.liu@senarytech.com> X-Mailer: git-send-email 2.7.4 X-HM-Spam-Status: e1kfGhgUHx5ZQUpXWQgPGg8OCBgUHx5ZQUlOS1dZFg8aDwILHllBWSg2Ly tZV1koWUFITzdXWS1ZQUlXWQ8JGhUIEh9ZQVkZThlPVkhJSkMZSB9OShpJSlUTARMWGhIXJBQOD1 lXWRgSC1lBWUlMVUpDVU5DVUpCT1lXWRYaDxIVHRRZQVlPS0hVSkpLSEpDVUpLS1VLWQY+ X-HM-Sender-Digest: e1kMHhlZQR0aFwgeV1kSHx4VD1lBWUc6PVE6ARw6HD0XPi8sGCkhFzEy SUMKCRlVSlVKTUxOQktDQ09CTkpJVTMWGhIXVRkUVRcSDjsIHhUaCQIPHhgTVRgUFkVZV1kSC1lB WUlMVUpDVU5DVUpCT1lXWQgBWUFKQ0pONwY+ X-HM-Tid: 0a8633f39d2f2eb6kusnbeca32042b Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Bo Liu The current kernel does not support the SN6180 codec chip. Add the SN6180 codec configuration item to kernel. Signed-off-by: Bo Liu --- sound/pci/hda/patch_conexant.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/pci/hda/patch_conexant.c b/sound/pci/hda/patch_conexant.c index 7b1a30a..75e1d00 100644 --- a/sound/pci/hda/patch_conexant.c +++ b/sound/pci/hda/patch_conexant.c @@ -1125,6 +1125,7 @@ static const struct hda_device_id snd_hda_id_conexant[] = { HDA_CODEC_ENTRY(0x14f11f87, "SN6140", patch_conexant_auto), HDA_CODEC_ENTRY(0x14f12008, "CX8200", patch_conexant_auto), HDA_CODEC_ENTRY(0x14f120d0, "CX11970", patch_conexant_auto), + HDA_CODEC_ENTRY(0x14f120d1, "SN6180", patch_conexant_auto), HDA_CODEC_ENTRY(0x14f15045, "CX20549 (Venice)", patch_conexant_auto), HDA_CODEC_ENTRY(0x14f15047, "CX20551 (Waikiki)", patch_conexant_auto), HDA_CODEC_ENTRY(0x14f15051, "CX20561 (Hermosa)", patch_conexant_auto), -- 2.7.4