]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
wifi: rtw89: 8852bt: add 8852BE-VT to Makefile and Kconfig
authorPing-Ke Shih <pkshih@realtek.com>
Sat, 20 Jul 2024 02:13:40 +0000 (10:13 +0800)
committerPing-Ke Shih <pkshih@realtek.com>
Wed, 31 Jul 2024 05:51:19 +0000 (13:51 +0800)
RTL8852BE-VT is a WiFi 6 2x2 chip, which can operate on 2/5 GHz channels
and 80MHz bandwidth.

Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Link: https://patch.msgid.link/20240720021340.12102-8-pkshih@realtek.com
drivers/net/wireless/realtek/rtw89/Kconfig
drivers/net/wireless/realtek/rtw89/Makefile

index 6278fd74e98ee69496505ec1e0cdbad0ec41cfaa..d2a3361669d7a64bae3e21629cad7a86dc4c1755 100644 (file)
@@ -29,6 +29,9 @@ config RTW89_8852B_COMMON
 config RTW89_8852B
        tristate
 
+config RTW89_8852BT
+       tristate
+
 config RTW89_8852C
        tristate
 
@@ -69,6 +72,18 @@ config RTW89_8852BE
 
          802.11ax PCIe wireless network (Wi-Fi 6) adapter
 
+config RTW89_8852BTE
+       tristate "Realtek 8852BE-VT PCI wireless network (Wi-Fi 6) adapter"
+       depends on PCI
+       select RTW89_CORE
+       select RTW89_PCI
+       select RTW89_8852BT
+       select RTW89_8852B_COMMON
+       help
+         Select this option will enable support for 8852BE-VT chipset
+
+         802.11ax PCIe wireless network (Wi-Fi 6) adapter
+
 config RTW89_8852CE
        tristate "Realtek 8852CE PCI wireless network (Wi-Fi 6E) adapter"
        depends on PCI
index 1f1050a7a89dc6e82473782c886cfd9627048e1c..c751013e811e8f539683c5190fa026fe2f2fd8b5 100644 (file)
@@ -52,6 +52,14 @@ rtw89_8852b-objs := rtw8852b.o \
 obj-$(CONFIG_RTW89_8852BE) += rtw89_8852be.o
 rtw89_8852be-objs := rtw8852be.o
 
+obj-$(CONFIG_RTW89_8852BT) += rtw89_8852bt.o
+rtw89_8852bt-objs := rtw8852bt.o \
+                   rtw8852bt_rfk.o \
+                   rtw8852bt_rfk_table.o
+
+obj-$(CONFIG_RTW89_8852BTE) += rtw89_8852bte.o
+rtw89_8852bte-objs := rtw8852bte.o
+
 obj-$(CONFIG_RTW89_8852C) += rtw89_8852c.o
 rtw89_8852c-objs := rtw8852c.o \
                    rtw8852c_table.o \