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 574A722A81C; Thu, 12 Dec 2024 17:00:39 +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=1734022839; cv=none; b=FMxHZy4dBLevzSzJInbaR7tfnfHOd65EuB1zoyEjwXhSrHA+9aLvID/cLw3WWr5CCI8oMuJTyQvpxvIsv8ClHMnsoZuliGk9VaaSF2RviSQm/CFqJv1UTZuPUtHA0QU6ySbGLtnlXJbmGncUMCS06lTJlb+VoHkkI7nKQ35Pofc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734022839; c=relaxed/simple; bh=87efIatYdbPJfMSAplZIo1eM2+e5tyrrEi3N1rAaJtE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=RCTHUvyYn+wKSsp8AOxHIrnW1DaUwSIMLiofwwM8yy1jHT0G8ANGbajyKM66FiLpkg7G2eITSj9DymG6bpO1rgpKTs3C7Gjyhk5yJLtmsWwGXtQS4ZyEx0pPfVlluh6O3WBU4D9k6CMez5CbFpj8qGkwcocnJ3BT6U2GjbPfCAE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=YqdSXHmW; 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="YqdSXHmW" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9D2F3C4CED0; Thu, 12 Dec 2024 17:00:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734022839; bh=87efIatYdbPJfMSAplZIo1eM2+e5tyrrEi3N1rAaJtE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YqdSXHmWSLalXtyDl2RmQGzxPWVXNLSiD8hr/uZx0TASI1UfDBEWOg8uWl8aQSSq8 omEnwdu9bNqO4rjPN82/jOO82RScnKrpCQaRxmljubLgySed592D5s5i1Ym3PXeTU1 wNiU7oklX2HN8kUxbQpsg7uJhC6db+r+4ZTEj5og= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Takashi Iwai Subject: [PATCH 5.15 347/565] ALSA: hda/realtek: Apply quirk for Medion E15433 Date: Thu, 12 Dec 2024 15:59:02 +0100 Message-ID: <20241212144325.315077168@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144311.432886635@linuxfoundation.org> References: <20241212144311.432886635@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 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Takashi Iwai commit ca0f79f0286046f6a91c099dc941cf7afae198d6 upstream. Medion E15433 laptop wich ALC269VC (SSID 2782:1705) needs the same workaround for the missing speaker as another model. Link: https://bugzilla.suse.com/show_bug.cgi?id=1233298 Cc: Link: https://patch.msgid.link/20241128072646.15659-1-tiwai@suse.de Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/pci/hda/patch_realtek.c | 1 + 1 file changed, 1 insertion(+) --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -9546,6 +9546,7 @@ static const struct snd_pci_quirk alc269 SND_PCI_QUIRK(0x2782, 0x0228, "Infinix ZERO BOOK 13", ALC269VB_FIXUP_INFINIX_ZERO_BOOK_13), SND_PCI_QUIRK(0x2782, 0x0232, "CHUWI CoreBook XPro", ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO), SND_PCI_QUIRK(0x2782, 0x1701, "Infinix Y4 Max", ALC269VC_FIXUP_INFINIX_Y4_MAX), + SND_PCI_QUIRK(0x2782, 0x1705, "MEDION E15433", ALC269VC_FIXUP_INFINIX_Y4_MAX), SND_PCI_QUIRK(0x2782, 0x1707, "Vaio VJFE-ADL", ALC298_FIXUP_SPK_VOLUME), SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC), SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED),