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 7926233E377; Mon, 20 Apr 2026 15:47:40 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776700060; cv=none; b=b3h3IZfk4+kbSDAdfPqnUee2s0/seM6vPVHIa506Ejk4B3y+kBv203njnmXT3wbCKVS9uFNFDl3GU6x3awbUXRvFAMs9LMQC+hY6t2y4aLeTezHQE672Tddeho4ljTD00jymJoOfedQVJBglVAP9iglpr7tQOuWVHeoSXjSSlnY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776700060; c=relaxed/simple; bh=I6gwlp225kdBxYPkTmJ1cko77nqYJId9GDkRA7owkEs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ZD9lt/rQA6lADJtOtp3LXtqQH2XsjvWJ6VZn/IYRlwQw4lbpASkWEad/rcs7u5Ft5uhVmaOUTJQWj1DZXmPjdSirXETPI8ZfAZDS9+rjAaBFqPGPSzWNVAIbWIrqiXy8l/jJ9lTUoKi5teZJJoHbdxQmlugtiz1G9ozG2NhJ3GA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=VjXVqcDp; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="VjXVqcDp" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0BDF3C2BCB9; Mon, 20 Apr 2026 15:47:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776700060; bh=I6gwlp225kdBxYPkTmJ1cko77nqYJId9GDkRA7owkEs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VjXVqcDpLuYs+GLYA5Gz/vP31ytAldusqZCvmJnwINqeG0rZ7paQik/jlOKYt1+EM 4E7DVFE8JNgTYS3e5PLlt8BaFeY22fszEkRzYy8ntKP8PrdlAzkDdrYXtOTmqsudmL mYUhXd/VyA3tf3J07H2F4GwYh8zZOE8aC2XxWsWM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, "Dustin L. Howett" , Takashi Iwai , Sasha Levin Subject: [PATCH 6.19 026/220] ALSA: hda/realtek: add quirk for Framework F111:000F Date: Mon, 20 Apr 2026 17:39:27 +0200 Message-ID: <20260420153934.971659854@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260420153934.013228280@linuxfoundation.org> References: <20260420153934.013228280@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.19-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dustin L. Howett [ Upstream commit bac1e57adf08c9ee33e95fb09cd032f330294e70 ] Similar to commit 7b509910b3ad ("ALSA hda/realtek: Add quirk for Framework F111:000C") and previous quirks for Framework systems with Realtek codecs. 000F is another new platform with an ALC285 which needs the same quirk. Signed-off-by: Dustin L. Howett Link: https://patch.msgid.link/20260327-framework-alsa-000f-v1-1-74013aba1c00@howett.net Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- sound/hda/codecs/realtek/alc269.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/hda/codecs/realtek/alc269.c b/sound/hda/codecs/realtek/alc269.c index 1791ed0f3b4df..e3277293dac6a 100644 --- a/sound/hda/codecs/realtek/alc269.c +++ b/sound/hda/codecs/realtek/alc269.c @@ -7760,6 +7760,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = { SND_PCI_QUIRK(0xf111, 0x0009, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0xf111, 0x000b, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0xf111, 0x000c, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE), + SND_PCI_QUIRK(0xf111, 0x000f, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE), #if 0 /* Below is a quirk table taken from the old code. -- 2.53.0