diff options
author | Luciano Coelho <coelho@ti.com> | 2013-01-25 14:05:34 +0400 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2013-02-08 12:05:02 +0400 |
commit | 6cc9efed707c575a9e5880ea68f8b9d36b235f1f (patch) | |
tree | 205ce4c92ece7ea5c3020b9ce12ca801e08642af /drivers/net/wireless/ti/Kconfig | |
parent | 06ab4058ea418d8503458bea386961b9dd554356 (diff) | |
download | linux-6cc9efed707c575a9e5880ea68f8b9d36b235f1f.tar.xz |
wlcore: move wl12xx_platform_data up and make it truly optional
The platform data is used not only by wlcore-based drivers, but also
by wl1251. Move it up in the directory hierarchy to reflect this.
Additionally, make it truly optional. At the moment, disabling
platform data while wl1251_sdio or wlcore_sdio are enabled doesn't
work, but it will be necessary when device tree support is
implemented.
Signed-off-by: Luciano Coelho <coelho@ti.com>
Reviewed-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/net/wireless/ti/Kconfig')
-rw-r--r-- | drivers/net/wireless/ti/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/net/wireless/ti/Kconfig b/drivers/net/wireless/ti/Kconfig index be800119d0a3..cbe1e7fef61b 100644 --- a/drivers/net/wireless/ti/Kconfig +++ b/drivers/net/wireless/ti/Kconfig @@ -12,4 +12,13 @@ source "drivers/net/wireless/ti/wl18xx/Kconfig" # keep last for automatic dependencies source "drivers/net/wireless/ti/wlcore/Kconfig" + +config WILINK_PLATFORM_DATA + bool "TI WiLink platform data" + depends on WLCORE_SDIO || WL1251_SDIO + default y + ---help--- + Small platform data bit needed to pass data to the sdio modules. + + endif # WL_TI |