7c0b6f49db
Based on discussions with And Bergmann, this patch changes the SDIO platform code to default to supporting the Sagrad devices, allowing for it to be overridden in board setup code. This renders the cw1200_sagrad module suplerflous, so it is now removed. It also moves the documentation that was in the cw1200_sagrad source to the platform header. Signed-off-by: Solomon Peachy <pizza@shaftnet.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
23 lines
441 B
Makefile
23 lines
441 B
Makefile
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_CW1200_ITP) += itp.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
|