From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 1B47232B11D; Sat, 30 May 2026 17:02:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780160562; cv=none; b=LROPWWI1TwWdIUARFQTmuBqOiALSWEjBNs15dPotiozgDkgqgfh2RkEzs7X8+ve8tM+2DZn7arF6YjnilhuxvsQrFMsKS6n/ZVwE0ivPZMnuylUdvDw8IcghIliJhlf6LqTP7gQ8sfKcBRcQHPdPZpW4EcU4ZLmEYccEAMgP1JA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780160562; c=relaxed/simple; bh=esiUhznBzSO87wmwt5AKTpXKmI4zCitIMCa8GioZ6g4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=SKmgvym8BCvK0V3PrKKg40ojPgabaCDCm0lA5TrfC2DkSgky2A97xOQPPPyNk89xl35ecnhst781Xab/wuzlEsj5xCnegL/pzPQNcV9+2yJ7kjbUb+GCh5DYmVLP3QKWjFP/cZZb12fui+41dT4RUbZvyzqOFCiR9dREEZFR9ZA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Hlgnf6FF; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="Hlgnf6FF" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3CA311F00893; Sat, 30 May 2026 17:02:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1780160561; bh=yfojGXzqXEN9mTh9OeQDhlr12P0+GTupjoqXT2WqQhw=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Hlgnf6FFNlDHGg0SeH7ONnM3h1LEY7JTvMTjSPW+ddK56yXu3H37JrdESCAWmv46N ELTFWYNnFfP1k33FzFL4Qimq88vULDFHwi6tmR1Mtzq+2cYZ6qwcgNd6W6DiZ93rRI hFan7Nch+h0lFyuDS13KsiRQQ+p8FPjJ6CYKyt04= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Tommaso Soncin , Mark Brown Subject: [PATCH 6.1 342/969] ASoC: amd: yc: Add HP OMEN Gaming Laptop 16-ap0xxx product line in quirk table Date: Sat, 30 May 2026 17:57:46 +0200 Message-ID: <20260530160309.811395786@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260530160300.485627683@linuxfoundation.org> References: <20260530160300.485627683@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Tommaso Soncin commit d63c219b7ff39f897da10c160a2edef76320f16c upstream. Add a DMI quirk for the HP OMEN Gaming Laptop 16-ap0xxx line fixing the issue where the internal microphone was not detected. Cc: stable@vger.kernel.org Signed-off-by: Tommaso Soncin Link: https://patch.msgid.link/20260429160858.538986-1-soncintommaso@gmail.com Signed-off-by: Mark Brown Signed-off-by: Greg Kroah-Hartman --- sound/soc/amd/yc/acp6x-mach.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -55,6 +55,13 @@ static const struct dmi_system_id yc_acp { .driver_data = &acp6x_card, .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "HP"), + DMI_MATCH(DMI_PRODUCT_NAME, "OMEN Gaming Laptop 16-ap0xxx"), + } + }, + { + .driver_data = &acp6x_card, + .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "Dell Inc."), DMI_MATCH(DMI_PRODUCT_NAME, "Dell G15 5525"), } @@ -578,6 +585,13 @@ static const struct dmi_system_id yc_acp } }, { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "HP"), + DMI_MATCH(DMI_BOARD_NAME, "8E35"), + } + }, + { .driver_data = &acp6x_card, .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "Micro-Star International Co., Ltd."),