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 A94BB31AA87; Sat, 30 May 2026 16:23:32 +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=1780158216; cv=none; b=Um6n6wWbae8EQXS6Zaue4HRd++1vHJ7bRnEibOHN1mak1MzYCj0uGyNc2pB5p1DcKgo1t+tJXz3lG6BCX0Ld/cpWQ/eTgl59/sDLN25shBOAnZr1z2EuBsLJOoFCyFmg4q1/zEouMXwGcdkEk6ayct3r2FiSy60IA4MPZZFwtmY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780158216; c=relaxed/simple; bh=97eCe/xRBWc/qOBxTLnlWtFXS6EObdSrdp66vHM4bGc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=NNdtbDXHMMKHawcZuAI/nymxuusDtRGEgcjfj+EkN84851GH4ldXH6iXaOvO17dVPtglj8Uq6Qbj98z1XQdszgRQiLqmygTj1oOrkHqPLOypccWiHe0qvJ5l8Is+fplbDeFicv4Wbm8mWCDYuq33/LL/PrxWqd7/chXups/DjK0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=MtVjfyLP; 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="MtVjfyLP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2497D1F00893; Sat, 30 May 2026 16:23:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1780158212; bh=U3ROKmtVG7o45U/zndk3h/RUOAN1YZJwIT72xZEOrGs=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=MtVjfyLPmtAEju/RV/QBZZTb7FYrRpcdxspafv7I57+KfV+JRM0hDtQiOeA5wZfq0 N0HwQkRw8LrstBiCY1YPigcCxzId640TQ78Q6moVylER2EZ5c/oE3BPmCLnbHGCJT8 HVAuGVKDUTYGpyadBcBPTltqSDACrfc+j9pPcpZk= 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.1 011/969] ALSA: hda/realtek: add quirk for Framework F111:000F Date: Sat, 30 May 2026 17:52:15 +0200 Message-ID: <20260530160300.789280132@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: 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/pci/hda/patch_realtek.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 6bffce599c961..82de15e176746 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -10474,6 +10474,7 @@ static const struct snd_pci_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