Den 4.1.2021 kl. 11:17, skrev Ping-Ke Shih: > This driver named rtw89, which is the next generation of rtw88, supports > Realtek 8852AE 802.11ax 2x2 chip whose new features are OFDMA, DBCC, > Spatial reuse, TWT and BSS coloring; now some of them aren't implemented > though. > Hi, for some reason patch 16/18 does not show up in patchwork. Where can one get the needed firmware: $ modinfo rtw89_core.ko.xz |grep firmware firmware: rtw89/rtw8852a_fw.bin Also, the driver is missing the pci alias to get autoloading to work, like the attached patch. -- Thomas
Add missing MODULE_DEVICE_TABLE() needed for module autoloading Signed-off-by: Thomas Backlund <tmb@xxxxxxxxxx> diff -Nurp a/drivers/net/wireless/realtek/rtw89g/pci.c b/drivers/net/wireless/realtek/rtw89/pci.c --- a/drivers/net/wireless/realtek/rtw89/pci.c +++ b/drivers/net/wireless/realtek/rtw89/pci.c @@ -2553,6 +2553,7 @@ static const struct pci_device_id rtw89_ { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8852), .driver_data = RTL8852A }, {}, }; +MODULE_DEVICE_TABLE(pci, rtw89_pci_id_table); static struct pci_driver rtw89_pci_driver = { .name = "rtw89_pci",