Commit 14820388 authored by Ping-Ke Shih's avatar Ping-Ke Shih Committed by Kalle Valo
Browse files

wifi: rtw89: 8851b: add 8851be to Makefile and Kconfig



Since 8851BE is ready, so add 8851BE to Makefile and Kconfig. Currently,
it can support STA, AP and monitor modes with good performance.

Signed-off-by: default avatarPing-Ke Shih <pkshih@realtek.com>
Signed-off-by: default avatarKalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20230519031500.21087-8-pkshih@realtek.com
parent c4ff5014
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -16,6 +16,9 @@ config RTW89_CORE
config RTW89_PCI
	tristate

config RTW89_8851B
	tristate

config RTW89_8852A
	tristate

@@ -25,6 +28,17 @@ config RTW89_8852B
config RTW89_8852C
	tristate

config RTW89_8851BE
	tristate "Realtek 8851BE PCI wireless network (Wi-Fi 6) adapter"
	depends on PCI
	select RTW89_CORE
	select RTW89_PCI
	select RTW89_8851B
	help
	  Select this option will enable support for 8851BE chipset

	  802.11ax PCIe wireless network (Wi-Fi 6) adapter

config RTW89_8852AE
	tristate "Realtek 8852AE PCI wireless network (Wi-Fi 6) adapter"
	depends on PCI
+9 −0
Original line number Diff line number Diff line
@@ -18,6 +18,15 @@ rtw89_core-y += core.o \

rtw89_core-$(CONFIG_PM) += wow.o

obj-$(CONFIG_RTW89_8851B) += rtw89_8851b.o
rtw89_8851b-objs := rtw8851b.o \
		    rtw8851b_table.o \
		    rtw8851b_rfk.o \
		    rtw8851b_rfk_table.o

obj-$(CONFIG_RTW89_8851BE) += rtw89_8851be.o
rtw89_8851be-objs := rtw8851be.o

obj-$(CONFIG_RTW89_8852A) += rtw89_8852a.o
rtw89_8852a-objs := rtw8852a.o \
		    rtw8852a_table.o \