From nobody Sun Oct 5 00:10:00 2025 Received: from air.basealt.ru (air.basealt.ru [193.43.8.18]) (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 B69251BD035; Mon, 11 Aug 2025 13:35:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=193.43.8.18 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1754919306; cv=none; b=Brq6kWsCU7Ejw8wkAJHjQBB+Rq0vLZf0obquXjj4nAPio+hzXaqc8TkmeuKXhqC14ynnxqEwpkf4//RcDuLqznyaVEUZokbxF76YAyfS89zUqQ4ofeARs3w4nGrTlxhjwstCrME2WrTwAsn+0H5Slm1oX3C4NmB3zbKMQPqhAeU= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1754919306; c=relaxed/simple; bh=V16S8ufTDwgBbRtXqhu70gPq7n4w4giCSHIKAI5I5SI=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=gckn+5Yex9NokVAZccvykhXBXt3tiklXZ+WP+Ec49LWaL2SV0XZQRqB6nC0It5B5ifNZM0nQthK28mIAkgBCWJElcv1d86QeV0N6zKbUmo54n6l0ZwT1LxJoNdrS1yxLa4WYevRASXJIhstyLlvIHIpKRKs4WG4hJojWcwkxkwI= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=altlinux.org; spf=pass smtp.mailfrom=altlinux.org; arc=none smtp.client-ip=193.43.8.18 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=altlinux.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=altlinux.org Received: from altlinux.malta.altlinux.ru (obninsk.basealt.ru [217.15.195.17]) (Authenticated sender: kovalevvv) by air.basealt.ru (Postfix) with ESMTPSA id E0AA52336B; Mon, 11 Aug 2025 16:27:20 +0300 (MSK) From: Vasiliy Kovalev To: Takashi Iwai , Kailang Yang , linux-sound@vger.kernel.org, linux-kernel@vger.kernel.org Cc: kovalev@altlinux.org Subject: [PATCH] ALSA: hda/realtek: Fix headset mic on HONOR BRB-X Date: Mon, 11 Aug 2025 16:27:16 +0300 Message-Id: <20250811132716.45076-1-kovalev@altlinux.org> X-Mailer: git-send-email 2.33.8 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Add a PCI quirk to enable microphone input on the headphone jack on the HONOR BRB-X M1010 laptop. Signed-off-by: Vasiliy Kovalev --- sound/hda/codecs/realtek/alc269.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/hda/codecs/realtek/alc269.c b/sound/hda/codecs/realtek/a= lc269.c index 337e33a59de88..e90c4047ea62e 100644 --- a/sound/hda/codecs/realtek/alc269.c +++ b/sound/hda/codecs/realtek/alc269.c @@ -7140,6 +7140,7 @@ static const struct hda_quirk alc269_fixup_tbl[] =3D { SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_M= IC), SND_PCI_QUIRK(0x1d72, 0x1945, "Redmi G", ALC256_FIXUP_ASUS_HEADSET_MIC), SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSE= T_MIC), + SND_PCI_QUIRK(0x1ee7, 0x2078, "HONOR BRB-X M1010", ALC2XX_FIXUP_HEADSET_M= IC), SND_PCI_QUIRK(0x1f66, 0x0105, "Ayaneo Portable Game Player", ALC287_FIXUP= _CS35L41_I2C_2), SND_PCI_QUIRK(0x2014, 0x800a, "Positivo ARN50", ALC269_FIXUP_LIMIT_INT_MI= C_BOOST), SND_PCI_QUIRK(0x2782, 0x0214, "VAIO VJFE-CL", ALC269_FIXUP_LIMIT_INT_MIC_= BOOST), --=20 2.50.1