diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2011-02-18 20:25:36 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-02-21 15:39:56 -0500 |
commit | 0aec516ce4cfd44f48b3ae0c54bc2f1eab007173 (patch) | |
tree | 86282bb4f18de31b3ee6d1943bf4f8b3fa1dfff5 /drivers | |
parent | d985255e00e8a6a0d87b1dc674113bc76bed04a0 (diff) |
wl12xx: fix sdio_test kconfig/build errors
The wl12xx sdio_test code uses wl12xx_get_platform_data, which is
only present when WL12*_SDIO is enabled, so make WL12XX_SDIO_TEST
depend on WL12XX_SDIO so that the needed interface will be present.
sdio_test.c:(.devinit.text+0x13178): undefined reference to `wl12xx_get_platform_data'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Luciano Coelho <luciano.coelho@nokia.com>
Cc: Roger Quadros <roger.quadros@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/wl12xx/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/Kconfig b/drivers/net/wireless/wl12xx/Kconfig index 0e65bce457d6..692ebff38fc8 100644 --- a/drivers/net/wireless/wl12xx/Kconfig +++ b/drivers/net/wireless/wl12xx/Kconfig | |||
@@ -54,7 +54,7 @@ config WL12XX_SDIO | |||
54 | 54 | ||
55 | config WL12XX_SDIO_TEST | 55 | config WL12XX_SDIO_TEST |
56 | tristate "TI wl12xx SDIO testing support" | 56 | tristate "TI wl12xx SDIO testing support" |
57 | depends on WL12XX && MMC | 57 | depends on WL12XX && MMC && WL12XX_SDIO |
58 | default n | 58 | default n |
59 | ---help--- | 59 | ---help--- |
60 | This module adds support for the SDIO bus testing with the | 60 | This module adds support for the SDIO bus testing with the |