diff options
| author | Jan Glauber <[email protected]> | 2017-10-02 14:02:41 +0200 |
|---|---|---|
| committer | Ulf Hansson <[email protected]> | 2017-10-30 11:46:00 +0100 |
| commit | 62467bbbbc4e37a0f491588bb6059bce56f31737 (patch) | |
| tree | 66537adb378dafb11299880273ae18faa186263b | |
| parent | c0309b3803fed96cc9adb0a8701e271177f5cb04 (diff) | |
mmc: cavium: Depend on GPIO driver
Without the ThunderX/OcteonTx GPIO driver the MMC driver
would not power up any MMC devices. Therefore add a
dependency to the GPIO driver and remove the unneeded GPIOLIB
dependency.
Signed-off-by: Jan Glauber <[email protected]>
Acked-by: David Daney <[email protected]>
Signed-off-by: Ulf Hansson <[email protected]>
| -rw-r--r-- | drivers/mmc/host/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig index 37281d4201b1..8a4447b624a8 100644 --- a/drivers/mmc/host/Kconfig +++ b/drivers/mmc/host/Kconfig @@ -664,7 +664,7 @@ config MMC_CAVIUM_OCTEON config MMC_CAVIUM_THUNDERX tristate "Cavium ThunderX SD/MMC Card Interface support" depends on PCI && 64BIT && (ARM64 || COMPILE_TEST) - depends on GPIOLIB + depends on GPIO_THUNDERX depends on OF_ADDRESS help This selects Cavium ThunderX SD/MMC Card Interface. |