diff options
author | Alexander Koskovich <akoskovich@pm.me> | 2023-11-05 16:29:29 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2023-11-07 15:09:38 +0100 |
commit | df42ee7e22f03de034939d582c4dff19e6030e4f (patch) | |
tree | 347fb9b20febc134bffd8139023b0a27c8366687 /sound/pci | |
parent | ALSA: hda/realtek: Add quirk for ASUS UX7602ZM (diff) | |
download | linux-df42ee7e22f03de034939d582c4dff19e6030e4f.tar.xz linux-df42ee7e22f03de034939d582c4dff19e6030e4f.zip |
ALSA: hda: Add ASRock X670E Taichi to denylist
Recent AMD platforms expose an HD-audio bus but without any actual
codecs, which is internally tied with a USB-audio device, supposedly.
It results in "no codecs" error of HD-audio bus driver, and it's
nothing but a waste of resources.
snd_hda_intel 0000:59:00.6: no codecs found!
Signed-off-by: Alexander Koskovich <akoskovich@pm.me>
Link: https://lore.kernel.org/r/20231105152834.5620-1-akoskovich@pm.me
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/hda_intel.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 976e9d388cc7..e871afeeb383 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -2074,6 +2074,7 @@ static const struct pci_device_id driver_denylist[] = { { PCI_DEVICE_SUB(0x1022, 0x1487, 0x1043, 0x874f) }, /* ASUS ROG Zenith II / Strix */ { PCI_DEVICE_SUB(0x1022, 0x1487, 0x1462, 0xcb59) }, /* MSI TRX40 Creator */ { PCI_DEVICE_SUB(0x1022, 0x1487, 0x1462, 0xcb60) }, /* MSI TRX40 */ + { PCI_DEVICE_SUB(0x1022, 0x15e3, 0x1022, 0xd601) }, /* ASRock X670E Taichi */ {} }; |