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 regd.o 18 19rtw88-$(CONFIG_RTW88_8822BE) += rtw8822b.o rtw8822b_table.o 20rtw88-$(CONFIG_RTW88_8822CE) += rtw8822c.o rtw8822c_table.o 21 22obj-$(CONFIG_RTW88_PCI) += rtwpci.o 23rtwpci-objs := pci.o 24