Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

rtw88: 8821c: Add 8821CE to Kconfig and Makefile

Since 8821C code is ready, we can build it.

Signed-off-by: Tzu-En Huang <tehuang@realtek.com>
Signed-off-by: Yan-Hsuan Chuang <yhchuang@realtek.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200603094218.19942-6-yhchuang@realtek.com

authored by

Tzu-En Huang and committed by
Kalle Valo
f745eb9c d47e7371

+20
+14
drivers/net/wireless/realtek/rtw88/Kconfig
··· 25 25 config RTW88_8723D 26 26 tristate 27 27 28 + config RTW88_8821C 29 + tristate 30 + 28 31 config RTW88_8822BE 29 32 tristate "Realtek 8822BE PCI wireless network adapter" 30 33 depends on PCI ··· 60 57 Select this option will enable support for 8723DE chipset 61 58 62 59 802.11n PCIe wireless network adapter 60 + 61 + config RTW88_8821CE 62 + tristate "Realtek 8821CE PCI wireless network adapter" 63 + depends on PCI 64 + select RTW88_CORE 65 + select RTW88_PCI 66 + select RTW88_8821C 67 + help 68 + Select this option will enable support for 8821CE chipset 69 + 70 + 802.11ac PCIe wireless network adapter 63 71 64 72 config RTW88_DEBUG 65 73 bool "Realtek rtw88 debug support"
+6
drivers/net/wireless/realtek/rtw88/Makefile
··· 37 37 obj-$(CONFIG_RTW88_8723DE) += rtw88_8723de.o 38 38 rtw88_8723de-objs := rtw8723de.o 39 39 40 + obj-$(CONFIG_RTW88_8821C) += rtw88_8821c.o 41 + rtw88_8821c-objs := rtw8821c.o rtw8821c_table.o 42 + 43 + obj-$(CONFIG_RTW88_8821CE) += rtw88_8821ce.o 44 + rtw88_8821ce-objs := rtw8821ce.o 45 + 40 46 obj-$(CONFIG_RTW88_PCI) += rtw88_pci.o 41 47 rtw88_pci-objs := pci.o