diff options
author | Kalle Valo <kvalo@codeaurora.org> | 2015-11-17 21:09:02 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2015-11-18 15:28:30 +0300 |
commit | 560424e9a979a7b460055bda497bb4522ba5cc87 (patch) | |
tree | 53d3a3fb2beb0df84a3933934243249e71021c7c /drivers/net/wireless/st/cw1200/Makefile | |
parent | 05491d2ccf20b20a1375303441fbbfbd12b24a4f (diff) | |
download | linux-560424e9a979a7b460055bda497bb4522ba5cc87.tar.xz |
cw1200: move under st vendor directory
Part of reorganising wireless drivers directory and Kconfig.
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/st/cw1200/Makefile')
-rw-r--r-- | drivers/net/wireless/st/cw1200/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/drivers/net/wireless/st/cw1200/Makefile b/drivers/net/wireless/st/cw1200/Makefile new file mode 100644 index 000000000000..b086aac6547a --- /dev/null +++ b/drivers/net/wireless/st/cw1200/Makefile @@ -0,0 +1,21 @@ +cw1200_core-y := \ + fwio.o \ + txrx.o \ + main.o \ + queue.o \ + hwio.o \ + bh.o \ + wsm.o \ + sta.o \ + scan.o \ + debug.o +cw1200_core-$(CONFIG_PM) += pm.o + +# CFLAGS_sta.o += -DDEBUG + +cw1200_wlan_sdio-y := cw1200_sdio.o +cw1200_wlan_spi-y := cw1200_spi.o + +obj-$(CONFIG_CW1200) += cw1200_core.o +obj-$(CONFIG_CW1200_WLAN_SDIO) += cw1200_wlan_sdio.o +obj-$(CONFIG_CW1200_WLAN_SPI) += cw1200_wlan_spi.o |