1# SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause 2 3obj-$(CONFIG_RTW88_CORE) += rtw88_core.o 4rtw88_core-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 sar.o \ 19 regd.o 20 21rtw88_core-$(CONFIG_PM) += wow.o 22 23rtw88_core-$(CONFIG_RTW88_LEDS) += led.o 24 25obj-$(CONFIG_RTW88_8822B) += rtw88_8822b.o 26rtw88_8822b-objs := rtw8822b.o rtw8822b_table.o 27 28obj-$(CONFIG_RTW88_8822BE) += rtw88_8822be.o 29rtw88_8822be-objs := rtw8822be.o 30 31obj-$(CONFIG_RTW88_8822BS) += rtw88_8822bs.o 32rtw88_8822bs-objs := rtw8822bs.o 33 34obj-$(CONFIG_RTW88_8822BU) += rtw88_8822bu.o 35rtw88_8822bu-objs := rtw8822bu.o 36 37obj-$(CONFIG_RTW88_8822C) += rtw88_8822c.o 38rtw88_8822c-objs := rtw8822c.o rtw8822c_table.o 39 40obj-$(CONFIG_RTW88_8822CE) += rtw88_8822ce.o 41rtw88_8822ce-objs := rtw8822ce.o 42 43obj-$(CONFIG_RTW88_8822CS) += rtw88_8822cs.o 44rtw88_8822cs-objs := rtw8822cs.o 45 46obj-$(CONFIG_RTW88_8822CU) += rtw88_8822cu.o 47rtw88_8822cu-objs := rtw8822cu.o 48 49obj-$(CONFIG_RTW88_8723X) += rtw88_8723x.o 50rtw88_8723x-objs := rtw8723x.o 51 52obj-$(CONFIG_RTW88_8703B) += rtw88_8703b.o 53rtw88_8703b-objs := rtw8703b.o rtw8703b_tables.o 54 55obj-$(CONFIG_RTW88_8723CS) += rtw88_8723cs.o 56rtw88_8723cs-objs := rtw8723cs.o 57 58obj-$(CONFIG_RTW88_8723D) += rtw88_8723d.o 59rtw88_8723d-objs := rtw8723d.o rtw8723d_table.o 60 61obj-$(CONFIG_RTW88_8723DE) += rtw88_8723de.o 62rtw88_8723de-objs := rtw8723de.o 63 64obj-$(CONFIG_RTW88_8723DS) += rtw88_8723ds.o 65rtw88_8723ds-objs := rtw8723ds.o 66 67obj-$(CONFIG_RTW88_8723DU) += rtw88_8723du.o 68rtw88_8723du-objs := rtw8723du.o 69 70obj-$(CONFIG_RTW88_8821C) += rtw88_8821c.o 71rtw88_8821c-objs := rtw8821c.o rtw8821c_table.o 72 73obj-$(CONFIG_RTW88_8821CE) += rtw88_8821ce.o 74rtw88_8821ce-objs := rtw8821ce.o 75 76obj-$(CONFIG_RTW88_8821CS) += rtw88_8821cs.o 77rtw88_8821cs-objs := rtw8821cs.o 78 79obj-$(CONFIG_RTW88_8821CU) += rtw88_8821cu.o 80rtw88_8821cu-objs := rtw8821cu.o 81 82obj-$(CONFIG_RTW88_88XXA) += rtw88_88xxa.o 83rtw88_88xxa-objs := rtw88xxa.o 84 85obj-$(CONFIG_RTW88_8821A) += rtw88_8821a.o 86rtw88_8821a-objs := rtw8821a.o rtw8821a_table.o 87 88obj-$(CONFIG_RTW88_8812A) += rtw88_8812a.o 89rtw88_8812a-objs := rtw8812a.o rtw8812a_table.o 90 91obj-$(CONFIG_RTW88_8821AU) += rtw88_8821au.o 92rtw88_8821au-objs := rtw8821au.o 93 94obj-$(CONFIG_RTW88_8812AU) += rtw88_8812au.o 95rtw88_8812au-objs := rtw8812au.o 96 97obj-$(CONFIG_RTW88_PCI) += rtw88_pci.o 98rtw88_pci-objs := pci.o 99 100obj-$(CONFIG_RTW88_SDIO) += rtw88_sdio.o 101rtw88_sdio-objs := sdio.o 102 103obj-$(CONFIG_RTW88_USB) += rtw88_usb.o 104rtw88_usb-objs := usb.o 105