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 0DD5426B09D; Tue, 8 Apr 2025 12:27: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=1744115261; cv=none; b=Lxq6FEudX+cvlaChAlVoxAR9OhZFUStx7UNiTXwdJ3Z/n8TWCQ//yog6GKndECQz7FQoAq61V3qRGCBr8FV1kqcpSZhdaGi0k/IRjvYY6HAYEez2AAbmJfGc+0PwRNeikUmIZGDS/Be6UtomZENVLu86X5XQujgfNQg1pJUWugg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744115261; c=relaxed/simple; bh=+fOl7IpqREaV8sYU7k/g5RXupJP9015rqO1rrCcGloQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=KGU56J4LqzcZoA9/kUcGSUCBKFbnx/zWmlCfkLm1gmJEWDGFXivFQLu/XVYZVhZgdqVPdyH2USKHKucy2Oy8lXTPyTagNSlmlNw4QcsLuI1vqv3FUfuWoECgjNpMiha8Yy/mSMMtoj1FTAZRzwcKbT+H7LDE59HZ/76TXoNnRaY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Zeep78/u; 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="Zeep78/u" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2CAB2C4CEE5; Tue, 8 Apr 2025 12:27:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744115260; bh=+fOl7IpqREaV8sYU7k/g5RXupJP9015rqO1rrCcGloQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Zeep78/uF/YDaA/k3/AawTNxouuyC7hD48MJpTHwXe12A0ggcSvyfcC3rXo63EZLW sd2mUXfGMnKbTHYHPbrLBNQNzqNNu5J2h8ye8EybqmAb02VWRMvC/LNEHmEriMbBBs PcE9SzId5TSXA14VxC2bKjEqA+1ZyKOiFb5FStYE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Takashi Iwai , Sasha Levin Subject: [PATCH 6.13 381/499] ALSA: hda/realtek: Fix built-in mic on another ASUS VivoBook model Date: Tue, 8 Apr 2025 12:49:53 +0200 Message-ID: <20250408104900.734460848@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250408104851.256868745@linuxfoundation.org> References: <20250408104851.256868745@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.13-stable review patch. If anyone has any objections, please let me know. ------------------ From: Takashi Iwai [ Upstream commit 8983dc1b66c0e1928a263b8af0bb06f6cb9229c4 ] There is another VivoBook model which built-in mic got broken recently by the fix of the pin sort. Apply the correct quirk ALC256_FIXUP_ASUS_MIC_NO_PRESENCE to this model for addressing the regression, too. Fixes: 3b4309546b48 ("ALSA: hda: Fix headset detection failure due to unstable sort") Closes: https://lore.kernel.org/Z95s5T6OXFPjRnKf@eldamar.lan Link: https://patch.msgid.link/20250402074208.7347-1-tiwai@suse.de 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 834f3bba21181..d38d5b173cbf0 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -10747,6 +10747,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = { SND_PCI_QUIRK(0x1043, 0x1c43, "ASUS UX8406MA", ALC245_FIXUP_CS35L41_SPI_2), SND_PCI_QUIRK(0x1043, 0x1c62, "ASUS GU603", ALC289_FIXUP_ASUS_GA401), SND_PCI_QUIRK(0x1043, 0x1c63, "ASUS GU605M", ALC285_FIXUP_ASUS_GU605_SPI_SPEAKER2_TO_DAC1), + SND_PCI_QUIRK(0x1043, 0x1c80, "ASUS VivoBook TP401", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1043, 0x1c92, "ASUS ROG Strix G15", ALC285_FIXUP_ASUS_G533Z_PINS), SND_PCI_QUIRK(0x1043, 0x1c9f, "ASUS G614JU/JV/JI", ALC285_FIXUP_ASUS_HEADSET_MIC), SND_PCI_QUIRK(0x1043, 0x1caf, "ASUS G634JY/JZ/JI/JG", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS), -- 2.39.5