forked from Minki/linux
6cc9efed70
The platform data is used not only by wlcore-based drivers, but also by wl1251. Move it up in the directory hierarchy to reflect this. Additionally, make it truly optional. At the moment, disabling platform data while wl1251_sdio or wlcore_sdio are enabled doesn't work, but it will be necessary when device tree support is implemented. Signed-off-by: Luciano Coelho <coelho@ti.com> Reviewed-by: Felipe Balbi <balbi@ti.com>
13 lines
355 B
Makefile
13 lines
355 B
Makefile
wlcore-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
|
|
|
|
wlcore_spi-objs = spi.o
|
|
wlcore_sdio-objs = sdio.o
|
|
|
|
wlcore-$(CONFIG_NL80211_TESTMODE) += testmode.o
|
|
obj-$(CONFIG_WLCORE) += wlcore.o
|
|
obj-$(CONFIG_WLCORE_SPI) += wlcore_spi.o
|
|
obj-$(CONFIG_WLCORE_SDIO) += wlcore_sdio.o
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__
|