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 2F69BC7EE29 for ; Thu, 25 May 2023 18:32:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241113AbjEYScM (ORCPT ); Thu, 25 May 2023 14:32:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50664 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240778AbjEYScC (ORCPT ); Thu, 25 May 2023 14:32:02 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EED9D135; Thu, 25 May 2023 11:31:59 -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 631C164893; Thu, 25 May 2023 18:31:59 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 97BB9C4339B; Thu, 25 May 2023 18:31:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1685039518; bh=30LUA668h7VdTQuEqajPXaMTBzrCOVJwFLuPF9LjHBo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=f77ZhGjtPRuFcDb3H6pAow3J/NMDGXwIxs+UQeFAS6ttZOmFcfVLekmr79o5TQhyV 4wEDuJ4lPqJmXnkb3Fzl6ANU1PgXhuL4Xk7eHhJIxEu7O+CtMQAu1E9Jum8jSBdEte 7lsJ/qgKnSaKtKK3VowbiByjCzr/VJ1kD1rXwTVJln8cEWHlQm5c9XOmvzFH+LJZtr mFtcX9hTaHST5q/JBJbWCoYRnX1jdrQdrX1EAHu/W2PPVxGn/G6tJ7ZvD3RI2zl+ml Puxl4vqrIjau1bW8hVOAolrgp4cR8tZ/OcqMyxrBoTNde2BzGFqZX2yp3EIkhNBbuR ZmkTCSeHvXYqQ== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Jeremy Soller , Sasha Levin , lgirdwood@gmail.com, broonie@kernel.org, perex@perex.cz, tiwai@suse.com, mario.limonciello@amd.com, Syed.SabaKareem@amd.com, xazrael@hotmail.com, alsa-devel@alsa-project.org Subject: [PATCH AUTOSEL 6.3 04/67] ASoC: amd: yc: Add DMI entry to support System76 Pangolin 12 Date: Thu, 25 May 2023 14:30:41 -0400 Message-Id: <20230525183144.1717540-4-sashal@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230525183144.1717540-1-sashal@kernel.org> References: <20230525183144.1717540-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: Jeremy Soller [ Upstream commit 7b9891ad25246b18b5ccc19518da7abc7763aa0a ] Add pang12 quirk to enable the internal microphone. Signed-off-by: Jeremy Soller --- 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 0acdf0156f075..b844f321d139e 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -276,6 +276,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = { DMI_MATCH(DMI_BOARD_NAME, "8A22"), } }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "System76"), + DMI_MATCH(DMI_PRODUCT_VERSION, "pang12"), + } + }, {} }; -- 2.39.2