mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
248daa084c
Change some file names and Kconfig settings so that this new module matches the new way of using wl12xx instead of wl1271. Also fix SDIO power enabling and disabling to match the latest way of doing it. Cc: Roger Quadros <roger.quadros@nokia.com> Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
17 lines
500 B
Makefile
17 lines
500 B
Makefile
wl12xx-objs = main.o cmd.o io.o event.o tx.o rx.o ps.o acx.o \
|
|
boot.o init.o debugfs.o scan.o
|
|
|
|
wl12xx_spi-objs = spi.o
|
|
wl12xx_sdio-objs = sdio.o
|
|
wl12xx_sdio_test-objs = sdio_test.o
|
|
|
|
wl12xx-$(CONFIG_NL80211_TESTMODE) += testmode.o
|
|
obj-$(CONFIG_WL12XX) += wl12xx.o
|
|
obj-$(CONFIG_WL12XX_SPI) += wl12xx_spi.o
|
|
obj-$(CONFIG_WL12XX_SDIO) += wl12xx_sdio.o
|
|
|
|
obj-$(CONFIG_WL12XX_SDIO_TEST) += wl12xx_sdio_test.o
|
|
|
|
# small builtin driver bit
|
|
obj-$(CONFIG_WL12XX_PLATFORM_DATA) += wl12xx_platform_data.o
|