d99bf6e707
Make this go away (happens when building with a separate object directory): Assembler messages: Fatal error: can't create drivers/net/wireless/wl12xx/.tmp_wl12xx_platform_data.o: No such file or directory drivers/net/wireless/wl12xx/wl12xx_platform_data.c: In function 'wl12xx_get_platform_data': drivers/net/wireless/wl12xx/wl12xx_platform_data.c:28: error: cannot open drivers/net/wireless/wl12xx/.tmp_wl12xx_platform_data.gcno drivers/net/wireless/wl12xx/wl12xx_platform_data.c:28: confused by earlier errors, bailing out Signed-off-by: John W. Linville <linville@tuxdriver.com> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Cc: Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
22 lines
771 B
Makefile
22 lines
771 B
Makefile
wl1251-objs = wl1251_main.o wl1251_event.o \
|
|
wl1251_tx.o wl1251_rx.o wl1251_ps.o wl1251_cmd.o \
|
|
wl1251_acx.o wl1251_boot.o wl1251_init.o \
|
|
wl1251_debugfs.o wl1251_io.o
|
|
|
|
obj-$(CONFIG_WL1251) += wl1251.o
|
|
obj-$(CONFIG_WL1251_SPI) += wl1251_spi.o
|
|
obj-$(CONFIG_WL1251_SDIO) += wl1251_sdio.o
|
|
|
|
wl1271-objs = wl1271_main.o wl1271_cmd.o wl1271_io.o \
|
|
wl1271_event.o wl1271_tx.o wl1271_rx.o \
|
|
wl1271_ps.o wl1271_acx.o wl1271_boot.o \
|
|
wl1271_init.o wl1271_debugfs.o wl1271_scan.o
|
|
|
|
wl1271-$(CONFIG_NL80211_TESTMODE) += wl1271_testmode.o
|
|
obj-$(CONFIG_WL1271) += wl1271.o
|
|
obj-$(CONFIG_WL1271_SPI) += wl1271_spi.o
|
|
obj-$(CONFIG_WL1271_SDIO) += wl1271_sdio.o
|
|
|
|
# small builtin driver bit
|
|
obj-$(CONFIG_WL12XX_PLATFORM_DATA) += wl12xx_platform_data.o
|