33cab57a50
Instead of doing all the sysfs file handling in the main file, move it to a new sysfs source file to reduce the amount of code in a single file. Signed-off-by: Luciano Coelho <coelho@ti.com>
13 lines
363 B
Makefile
13 lines
363 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 sysfs.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__
|