mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-12 22:36:39 +07:00
34dd2aaac4
The scanning code is going to get a bit more complex, with proper support for active/passive scans together with 2.4GHz and 5GHz. In the future, also a new type of scan (periodic scan) will be added. When all this is implemented, the code is going to be much more complex, so we'd better separate it into a separate file. This patch doesn't have any impact on functionality. Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com> Reviewed-by: Saravanan Dhanabal <ext-saravanan.dhanabal@nokia.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
19 lines
682 B
Makefile
19 lines
682 B
Makefile
wl1251-objs = wl1251_main.o wl1251_event.o \
|
|
wl1251_tx.o wl1251_rx.o wl1251_ps.o wl1251_cmd.o \
|
|
wl1251_acx.o wl1251_boot.o wl1251_init.o \
|
|
wl1251_debugfs.o wl1251_io.o
|
|
|
|
obj-$(CONFIG_WL1251) += wl1251.o
|
|
obj-$(CONFIG_WL1251_SPI) += wl1251_spi.o
|
|
obj-$(CONFIG_WL1251_SDIO) += wl1251_sdio.o
|
|
|
|
wl1271-objs = wl1271_main.o wl1271_cmd.o wl1271_io.o \
|
|
wl1271_event.o wl1271_tx.o wl1271_rx.o \
|
|
wl1271_ps.o wl1271_acx.o wl1271_boot.o \
|
|
wl1271_init.o wl1271_debugfs.o wl1271_scan.o
|
|
|
|
wl1271-$(CONFIG_NL80211_TESTMODE) += wl1271_testmode.o
|
|
obj-$(CONFIG_WL1271) += wl1271.o
|
|
obj-$(CONFIG_WL1271_SPI) += wl1271_spi.o
|
|
obj-$(CONFIG_WL1271_SDIO) += wl1271_sdio.o
|