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 E9F991DE88F; Tue, 8 Oct 2024 12:41:23 +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=1728391284; cv=none; b=rncQ1yTr8JXrAb1pJ3yWr8VT1ymnz/HZRzVlONOnZhlv04xlKaqfXJlpGvLdrhrdYldLIeaDbwrPxU3Yl6ljM5hXZfdi+57v92RvsmoqDd1dWsiZfcp3XrcIYgsUchRPJppmQk6omjEGrRfBfgCLYgzy7wvd89KdF3zNE4WeDTk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728391284; c=relaxed/simple; bh=adPD6SovzbqrvQbCwlhKRSQw1qzjnxTMUgBdb4lFiGo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=X+9oHmIM1HNRouPajVs3dxGPpC7l3mxINjnDtiyE1yZoYP0mP8DWKvCr3BrZSXY5+4afsRassLjLJ7Lb034ZfLA5nBYRN6XUFR150Li/ob98bhyuG/k/0TCW0JBf0XiVltPI6PvlI5UwZq60DsWJfhhdWwdWbvL1Q5Bu8qff3bY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ST/ZBjZ4; 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="ST/ZBjZ4" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4F38AC4CEC7; Tue, 8 Oct 2024 12:41:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1728391283; bh=adPD6SovzbqrvQbCwlhKRSQw1qzjnxTMUgBdb4lFiGo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ST/ZBjZ4XJ7f8GASWTBD/gZ37Qoo9a067bUkeiwWliqOldeNaCcXUUKt4cMwo9rfB W6e7rUHCRzymAC297Iox8YZjIYm/VCFQR/YJeOUxgpleeomwj3nLAvQxlHobL2eKE0 LksplmifrN/NMG6A9OCisLuNl7Fg8s2VEXt/DplU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Oder Chiou , Takashi Iwai , Sasha Levin Subject: [PATCH 6.11 064/558] ALSA: hda/realtek: Fix the push button function for the ALC257 Date: Tue, 8 Oct 2024 14:01:34 +0200 Message-ID: <20241008115704.737176615@linuxfoundation.org> X-Mailer: git-send-email 2.46.2 In-Reply-To: <20241008115702.214071228@linuxfoundation.org> References: <20241008115702.214071228@linuxfoundation.org> User-Agent: quilt/0.67 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.11-stable review patch. If anyone has any objections, please let me know. ------------------ From: Oder Chiou [ Upstream commit 05df9732a0894846c46d0062d4af535c5002799d ] The headset push button cannot work properly in case of the ALC257. This patch reverted the previous commit to correct the side effect. Fixes: ef9718b3d54e ("ALSA: hda/realtek: Fix noise from speakers on Lenovo IdeaPad 3 15IAU7") Signed-off-by: Oder Chiou Link: https://patch.msgid.link/20240930105039.3473266-1-oder_chiou@realtek.com 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 452c6e7c20e20..4035ec31e1baf 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -586,6 +586,7 @@ static void alc_shutup_pins(struct hda_codec *codec) switch (codec->core.vendor_id) { case 0x10ec0236: case 0x10ec0256: + case 0x10ec0257: case 0x19e58326: case 0x10ec0283: case 0x10ec0285: -- 2.43.0