From patchwork Mon Jan 15 17:23:03 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?w4dhxJ9oYW4gRGVtaXI=?= X-Patchwork-Id: 13519876 Received: from mx1.marmara.edu.tr (mx1.marmara.edu.tr [193.140.143.23]) (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 6F36E182AB; Mon, 15 Jan 2024 17:23:13 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=marun.edu.tr Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=marun.edu.tr Authentication-Results: smtp.subspace.kernel.org; dkim=fail reason="key not found in DNS" (0-bit key) header.d=marun.edu.tr header.i=@marun.edu.tr header.b="c/CzhwiL" Received: from mx1.marmara.edu.tr (localhost.localdomain [127.0.0.1]) by mx1.marmara.edu.tr (Proxmox) with ESMTP id B228B82A95; Mon, 15 Jan 2024 20:23:04 +0300 (+03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marun.edu.tr; h= cc:cc:content-transfer-encoding:content-type:content-type:date :from:from:in-reply-to:message-id:mime-version:references :reply-to:subject:subject:to:to; s=mx; bh=jH8/0JQnWz+vr8gNXNlad8 EEUqhrYAEXESLH82iEpiw=; b=c/CzhwiLKB9a2gIkbCyanFAM6j0YD1clWGD+p/ RYXw8KcDcnbk6ic5h75Db3hjwRBTYSdVNrUmD9mFke5ijMwXPQBNED4CnEExc/XN j0afEPPdfIfst7ffeL7YxGXTMsCS2oNt1wDcxtomRCNQl9CNutO852DL6h2qgcim hr0h095nkT98VucmUVeEJyMkmYeyHf9AC8T9fOx+pqs3coZ8Fk6flEl0C8FxBhaT yVV2wTYWuDrvz8vIGpR1auCOVRrxZVR6mkB4yiZPUIk+NftLmStmpXI/fIerwsfh oQPHoOk8HQqYXDppq4w3iHjdCTuLnhgsvY7d+gDzYICJ73p6Y0SjZJ3EwILvO/fE Xo5go12Zq7E6BRCjWowuJnkK47li99jxg/jqOCKJye/cfi6F2/50RGn+ATgYcD+0 erREHDhGotQuHYcwZZtB8wvbFkqYPgb49ek/RFzKDkLi6MPMRYNgQJ66KLQNut3u ZvVs+n/dJEhaGUwSsLw5dEiEhAtistvVWc1JtPlbRn5MI2gazx13SLiwPLqfJ0nl VgfZ3KnjVmZv8ggwCjwybIBHAOymmRckRBukicvmu7LU3/YfnN+SgBPeETZTmarx b1HgMk5kIxOiqvdSN9jcKmxmZ8+VfGgX6InSGuHLoHSF7KRLzGZLMDr/o7M0R/uT gMRVc= From: =?utf-8?b?w4dhxJ9oYW4gRGVtaXI=?= To: caghandemir@marun.edu.tr Cc: linux-kernel@vger.kernel.org, linux-sound@vger.kernel.org, perex@perex.cz, tiwai@suse.com Subject: [PATCH] ALSA: hda/relatek: Enable Mute LED on HP Laptop 15s-fq2xxx Date: Mon, 15 Jan 2024 20:23:03 +0300 Message-ID: <20240115172303.4718-1-caghandemir@marun.edu.tr> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240113023734.10817-2-caghandemir@marun.edu.tr> References: <20240113023734.10817-2-caghandemir@marun.edu.tr> Precedence: bulk X-Mailing-List: linux-sound@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 This HP Laptop uses ALC236 codec with COEF 0x07 idx 1 controlling the mute LED. This patch enables the already existing quirk for this device. Signed-off-by: Çağhan Demir --- 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 b68c94757..0f0a03e89 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -9861,6 +9861,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = { SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP), SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP), + SND_PCI_QUIRK(0x103c, 0x87fe, "HP Laptop 15s-fq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2), SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),