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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 06717C77B72 for ; Thu, 20 Apr 2023 11:05:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235330AbjDTLEs (ORCPT ); Thu, 20 Apr 2023 07:04:48 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54416 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234261AbjDTLEK (ORCPT ); Thu, 20 Apr 2023 07:04:10 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5995C8A71; Thu, 20 Apr 2023 04:03:04 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 26BF7647BF; Thu, 20 Apr 2023 11:02:04 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BB23EC4339E; Thu, 20 Apr 2023 11:02:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1681988523; bh=d0X3yg7haQvgsR2Vxh0jBkmYqiZKufzWZYdFlrBGUqM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ezVcqUeSR9dSgjLSw0n3Eyt5elJqr6yOtX3KDYBdWsoxx6c7UgQxRdoH0uNeQuNkA JRHzvXIUC7tzi6UqVlqsK5nZ7QkIQ/ZFy++V/reMU498Bf0NZyPnd2ChmboL6X0cF0 N1Rh92yHxRsrSMigJwrBb7rsq0RpNJI2kE3YGqv+oKrp8Cog06VJKlys3garPYtpJr wtF5avOnOYI+VhlGckmNwgCHfCv35pHQVHz9gcnRs/IyKmEfWqH0Yjrrv59d1FLcBG tOwSGzRQvI3jBseeY2n39Iz0xnTVHkcj3W9z0ErK/0LyqVkeUI8lTw+oQc7ezq6hUV vzhlz+OzBtcnQ== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Ge-org Brohammer , Mark Brown , Sasha Levin , lgirdwood@gmail.com, perex@perex.cz, tiwai@suse.com, mario.limonciello@amd.com, Syed.SabaKareem@amd.com, lxy.lixiaoyan@gmail.com, fengwk94@gmail.com, leohearts@leohearts.com, mendiebm@gmail.com, aniol@aniolmarti.cat, wimvanboven@gmail.com, xazrael@hotmail.com, dukzcry@ya.ru, alsa-devel@alsa-project.org Subject: [PATCH AUTOSEL 6.2 05/17] ASoC: amd: yc: Add DMI entries to support Victus by HP Laptop 16-e1xxx (8A22) Date: Thu, 20 Apr 2023 07:01:34 -0400 Message-Id: <20230420110148.505779-5-sashal@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230420110148.505779-1-sashal@kernel.org> References: <20230420110148.505779-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Ge-org Brohammer [ Upstream commit 205efd4619b860404ebb5882e5a119eb3b3b3716 ] This model requires an additional detection quirk to enable the internal microphone. Tried to use git send-email this time. Signed-off-by: Ge-org Brohammer Link: https://lore.kernel.org/r/PAVP195MB2261322C220E95D7F4B2732ADABC9@PAVP195MB2261.EURP195.PROD.OUTLOOK.COM Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/amd/yc/acp6x-mach.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c index 4a69ce702360c..0acdf0156f075 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -269,6 +269,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = { DMI_MATCH(DMI_BOARD_NAME, "8A43"), } }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "HP"), + DMI_MATCH(DMI_BOARD_NAME, "8A22"), + } + }, {} }; -- 2.39.2