1# SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause 2 3obj-$(CONFIG_RTW88_CORE) += rtw88.o 4rtw88-y += main.o \ 5 mac80211.o \ 6 util.o \ 7 debug.o \ 8 tx.o \ 9 rx.o \ 10 mac.o \ 11 phy.o \ 12 coex.o \ 13 efuse.o \ 14 fw.o \ 15 ps.o \ 16 sec.o \ 17 bf.o \ 18 wow.o \ 19 regd.o 20 21rtw88-$(CONFIG_RTW88_8822BE) += rtw8822b.o rtw8822b_table.o 22rtw88-$(CONFIG_RTW88_8822CE) += rtw8822c.o rtw8822c_table.o 23 24obj-$(CONFIG_RTW88_PCI) += rtwpci.o 25rtwpci-objs := pci.o 26