Skip to content

Commit

Permalink
Merge tag 'rtw-next-2024-08-09' of https://github.com/pkshih/rtw
Browse files Browse the repository at this point in the history
rtw-next patches for v6.12

A pull-request for v6.12 containing fixes and features, and list major
changes below:

rtw88:
 - improve USB performance by aggregation
 - fix RX bandwidth for rx_status

rtw89:
 - support new WiFi 6 chip RTL8852BE-VT
 - support WoWLAN net-detect feature
 - support hardware encryption in unicast management frames
 - support hardware rfkill
  • Loading branch information
Kalle Valo committed Aug 10, 2024
2 parents 089332e + 002a5db commit cc32e9f
Show file tree
Hide file tree
Showing 60 changed files with 3,217 additions and 652 deletions.
5 changes: 2 additions & 3 deletions drivers/net/wireless/realtek/rtl8xxxu/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ config RTL8XXXU
memory footprint than the vendor drivers and benefits
from the in kernel mac80211 stack.

It can coexist with drivers from drivers/staging/rtl8723au,
drivers/staging/rtl8192u, and drivers/net/wireless/rtlwifi,
but you will need to control which module you wish to load.
It can coexist with the rtlwifi driver but you will need
to control which module you wish to load.

To compile this driver as a module, choose M here: the module will
be called rtl8xxxu. If unsure, say N.
Expand Down
6 changes: 6 additions & 0 deletions drivers/net/wireless/realtek/rtl8xxxu/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -8110,6 +8110,12 @@ static const struct usb_device_id dev_table[] = {
.driver_info = (unsigned long)&rtl8192cu_fops},
{USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_REALTEK, 0x817f, 0xff, 0xff, 0xff),
.driver_info = (unsigned long)&rtl8192cu_fops},
{USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_REALTEK, 0x819a, 0xff, 0xff, 0xff),
.driver_info = (unsigned long)&rtl8192cu_fops},
{USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_REALTEK, 0x8754, 0xff, 0xff, 0xff),
.driver_info = (unsigned long)&rtl8192cu_fops},
{USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_REALTEK, 0x817c, 0xff, 0xff, 0xff),
.driver_info = (unsigned long)&rtl8192cu_fops},
/* Tested by Larry Finger */
{USB_DEVICE_AND_INTERFACE_INFO(0x7392, 0x7811, 0xff, 0xff, 0xff),
.driver_info = (unsigned long)&rtl8192cu_fops},
Expand Down
1 change: 1 addition & 0 deletions drivers/net/wireless/realtek/rtw88/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ if RTW88

config RTW88_CORE
tristate
select WANT_DEV_COREDUMP

config RTW88_PCI
tristate
Expand Down
Loading

0 comments on commit cc32e9f

Please sign in to comment.