From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id BDBD810FC for ; Wed, 7 Jun 2023 20:25:27 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3C25DC433EF; Wed, 7 Jun 2023 20:25:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1686169527; bh=AYDdix689I2vU8jOnY205uFQHxEJIW8WzC6bopMeBTM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=NBG75z8UmCZdSiXjUNtAD+YnWLUEX11/4kQVUcG8a+XUp0Cg1Y5qipWYhHx9ziDj0 WbZnegj3HH/n/7hs0OfJYhXtczIKvuH99TdNRpOJNCenmX3hAAvKJBM+ByncwrK3t0 zELLgQXu9m3+vFA/6WedTeNpELVNucUOZdQamqzE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Sasha Levin Subject: [PATCH 6.3 115/286] ASoC: amd: yc: Add DMI entry to support System76 Pangolin 12 Date: Wed, 7 Jun 2023 22:13:34 +0200 Message-ID: <20230607200926.837755550@linuxfoundation.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230607200922.978677727@linuxfoundation.org> References: <20230607200922.978677727@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 b9958e5553674..84b401b685f7f 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -297,6 +297,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