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 043F013DDB8; Thu, 25 Jul 2024 14:43:51 +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=1721918631; cv=none; b=SrZCGJ3bSDhMU/sGqpHzqJtBl85PypMpxOGz+lyxF2hfeYLRtwRBBvvfMkwtrOLBfo7XTiumdZ0ew1TZePzTz5OGSVB+JY+u5ZYU/DhfAgibNBiJKISsbhAeQezZvX9Q/zBwwQ9kB902lcJf1KYx7V0GsTf9+Zae+YDAz0xfqOU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1721918631; c=relaxed/simple; bh=Y21+UGsgNlb3qbtk+dRx7049Vkf6M7/vrvy9hstq55w=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=sOhaUpE5cKwu2P7iGbYyUWkDNLFauJj/uiCcDfhJCAiZCn+oItXF2Lbz/ciedDM8NsDjoAO5SoPkrZD3a+EEz86fyCNhVw2emzGJ38bwH9vja84WRlZOLU134qnO7D0FwiHqta+D3UWcE5OfBte4rxN/iGm/r24Nrbmh7QsTCjQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=pRUsJ88M; 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="pRUsJ88M" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7777AC116B1; Thu, 25 Jul 2024 14:43:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1721918630; bh=Y21+UGsgNlb3qbtk+dRx7049Vkf6M7/vrvy9hstq55w=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=pRUsJ88MJrrkNKeZjU5XpVnvp+ulsUZl2jogJgsx4qydOrbGoG6m5le6ZhWWdgAuA vAACGxe5Ba+OuuS9x6KiqhCyxjEkMFwSsNUXh8bVXP2z7eigTrf1csKTwSl397Gvno hoC619o+Fk/vxv2ICi39laswM+6FroK2S/LtYFiA= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Edson Juliano Drosdeck , Takashi Iwai Subject: [PATCH 5.4 42/43] ALSA: hda/realtek: Enable headset mic on Positivo SU C1400 Date: Thu, 25 Jul 2024 16:37:05 +0200 Message-ID: <20240725142732.059661696@linuxfoundation.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240725142730.471190017@linuxfoundation.org> References: <20240725142730.471190017@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.4-stable review patch. If anyone has any objections, please let me know. ------------------ From: Edson Juliano Drosdeck commit 8fc1e8b230771442133d5cf5fa4313277aa2bb8b upstream. Positivo SU C1400 is equipped with ALC256, and it needs ALC269_FIXUP_ASPIRE_HEADSET_MIC quirk to make its headset mic work. Signed-off-by: Edson Juliano Drosdeck Cc: Link: https://patch.msgid.link/20240712180642.22564-1-edson.drosdeck@gmail.com 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 @@ -8335,6 +8335,7 @@ static const struct snd_pci_quirk alc269 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC), SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE), SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE), + SND_PCI_QUIRK(0x10ec, 0x119e, "Positivo SU C1400", ALC269_FIXUP_ASPIRE_HEADSET_MIC), SND_PCI_QUIRK(0x10ec, 0x11bc, "VAIO VJFE-IL", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), SND_PCI_QUIRK(0x10ec, 0x1230, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), SND_PCI_QUIRK(0x10ec, 0x124c, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),