-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wl12xx: fix sdio_test module functionality
Due to some changes in PM in recent kernels, the sdio_test module has been broken for a while. This patch fixes the code that powers the card on and off. Also made some small indentation fixes in the Makefile. [Rephrased commit log and removed the change in the FW name, since it's done in another patch. -- Luca] Signed-off-by: Shahar Levi <shahar_levi@ti.com> Signed-off-by: Luciano Coelho <coelho@ti.com>
- Loading branch information
Shahar Levi
authored and
Luciano Coelho
committed
Sep 23, 2011
1 parent
6cd9d21
commit d3b104a
Showing
2 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
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_spi-objs = spi.o | ||
wl12xx_sdio-objs = sdio.o | ||
wl12xx_sdio_test-objs = sdio_test.o | ||
wl12xx_sdio_test-objs = sdio_test.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 | ||
|
||
obj-$(CONFIG_WL12XX_SDIO_TEST) += wl12xx_sdio_test.o | ||
obj-$(CONFIG_WL12XX_SDIO_TEST) += wl12xx_sdio_test.o | ||
|
||
# small builtin driver bit | ||
obj-$(CONFIG_WL12XX_PLATFORM_DATA) += wl12xx_platform_data.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters