pci_decode: force GSI for ath9k device

As noted in 'wifi/pc: add ath9k driver' it appears the tested device
only works with GSIs.

Issue #4861.
This commit is contained in:
Josef Söntgen 2023-01-15 13:20:12 +00:00 committed by Christian Helmuth
parent 22c9157231
commit 0e82322605

View File

@ -170,6 +170,13 @@ void Main::parse_pci_function(Bdf bdf,
device_id == 0x780d) device_id == 0x780d)
msi = msi_x = false; msi = msi_x = false;
} }
/*
* Force use of GSI on given ath9k device as using MSI
* does not work.
*/
if (vendor_id == 0x168c || device_id == 0x0034)
msi = msi_x = false;
} }
/* /*