mirror of
https://github.com/torvalds/linux.git
synced 2024-12-22 19:01:37 +00:00
c7e7c227b6
This module has been causing more trouble than being useful. It only tests the SDIO speed by connecting to the wl12xx chip and does some throughput calculations. It is an ugly quick hack and, if we really want to have it as part of wl12xx we need to clean it up and implement it properly. A tarball of the code has been created and posted here, with some instructions: http://wireless.kernel.org/en/users/Drivers/wl12xx#SDIO_performance_test_module Signed-off-by: Luciano Coelho <coelho@ti.com>
14 lines
411 B
Makefile
14 lines
411 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-$(CONFIG_NL80211_TESTMODE) += testmode.o
|
|
obj-$(CONFIG_WL12XX) += wl12xx.o
|
|
obj-$(CONFIG_WL12XX_SPI) += wl12xx_spi.o
|
|
obj-$(CONFIG_WL12XX_SDIO) += wl12xx_sdio.o
|
|
|
|
# small builtin driver bit
|
|
obj-$(CONFIG_WL12XX_PLATFORM_DATA) += wl12xx_platform_data.o
|