mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] ALSA: hda/realtek: Add quirk for ASUS VivoBook X509DAP
@ 2026-06-03 21:01 Andrei Faleichyk
  2026-06-03 21:18 ` Geraldo Nascimento
  0 siblings, 1 reply; 4+ messages in thread
From: Andrei Faleichyk @ 2026-06-03 21:01 UTC (permalink / raw)
  To: tiwai, perex; +Cc: linux-sound, linux-kernel, Andrei Faleichyk

Signed-off-by: Andrei Faleichyk <andrei.faleichyk@noogadev.com>
---
 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/alc269.c
index dcbc66984..18dec3427 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -7379,6 +7379,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
 	SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC),
 	SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE),
 	SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401),
+	SND_PCI_QUIRK(0x1043, 0x197e, "ASUS VivoBook X509DAP", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
 	SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE),
 	SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE),
 	SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE),
-- 
2.54.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] ALSA: hda/realtek: Add quirk for ASUS VivoBook X509DAP
  2026-06-03 21:01 [PATCH] ALSA: hda/realtek: Add quirk for ASUS VivoBook X509DAP Andrei Faleichyk
@ 2026-06-03 21:18 ` Geraldo Nascimento
  2026-06-03 21:33   ` Andrei Faleichyk
  0 siblings, 1 reply; 4+ messages in thread
From: Geraldo Nascimento @ 2026-06-03 21:18 UTC (permalink / raw)
  To: Andrei Faleichyk; +Cc: tiwai, perex, linux-sound, linux-kernel

Hi Andrei,

On Thu, Jun 04, 2026 at 01:01:18AM +0400, Andrei Faleichyk wrote:
> Signed-off-by: Andrei Faleichyk <andrei.faleichyk@noogadev.com>

Please provide an appropriate commit message.

Thanks,
Geraldo Nascimento

> ---
>  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/alc269.c
> index dcbc66984..18dec3427 100644
> --- a/sound/hda/codecs/realtek/alc269.c
> +++ b/sound/hda/codecs/realtek/alc269.c
> @@ -7379,6 +7379,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
>  	SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC),
>  	SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE),
>  	SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401),
> +	SND_PCI_QUIRK(0x1043, 0x197e, "ASUS VivoBook X509DAP", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
>  	SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE),
>  	SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE),
>  	SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE),
> -- 
> 2.54.0
> 
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] ALSA: hda/realtek: Add quirk for ASUS VivoBook X509DAP
  2026-06-03 21:18 ` Geraldo Nascimento
@ 2026-06-03 21:33   ` Andrei Faleichyk
  2026-06-04  8:17     ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Andrei Faleichyk @ 2026-06-03 21:33 UTC (permalink / raw)
  To: geraldogabriel; +Cc: andrei.faleichyk, linux-kernel, linux-sound, perex, tiwai

The internal microphone on ASUS VivoBook X509DAP (subsystem ID
0x1043:0x197e) is not detected without a quirk entry. Add
ALC256_FIXUP_ASUS_MIC_NO_PRESENCE to fix the issue.

Signed-off-by: Andrei Faleichyk <andrei.faleichyk@noogadev.com>
---
 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/alc269.c
index dcbc66984..18dec3427 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -7379,6 +7379,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
 	SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC),
 	SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE),
 	SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401),
+	SND_PCI_QUIRK(0x1043, 0x197e, "ASUS VivoBook X509DAP", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
 	SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE),
 	SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE),
 	SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE),
-- 
2.54.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] ALSA: hda/realtek: Add quirk for ASUS VivoBook X509DAP
  2026-06-03 21:33   ` Andrei Faleichyk
@ 2026-06-04  8:17     ` Takashi Iwai
  0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2026-06-04  8:17 UTC (permalink / raw)
  To: Andrei Faleichyk; +Cc: geraldogabriel, linux-kernel, linux-sound, perex, tiwai

On Wed, 03 Jun 2026 23:33:13 +0200,
Andrei Faleichyk wrote:
> 
> The internal microphone on ASUS VivoBook X509DAP (subsystem ID
> 0x1043:0x197e) is not detected without a quirk entry. Add
> ALC256_FIXUP_ASUS_MIC_NO_PRESENCE to fix the issue.
> 
> Signed-off-by: Andrei Faleichyk <andrei.faleichyk@noogadev.com>

Applied to for-next branch now.  Thanks.


Takashi

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-06-04  8:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-03 21:01 [PATCH] ALSA: hda/realtek: Add quirk for ASUS VivoBook X509DAP Andrei Faleichyk
2026-06-03 21:18 ` Geraldo Nascimento
2026-06-03 21:33   ` Andrei Faleichyk
2026-06-04  8:17     ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox