diff options
author | Shravan Kumar Ramani <sramani@mellanox.com> | 2019-03-27 10:15:15 -0400 |
---|---|---|
committer | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2019-03-27 16:57:32 +0100 |
commit | cbe706b0526837a9dfd26e4492c399e8ab0df5aa (patch) | |
tree | f1731ac73200f393cac9be2d8c85f653792ff6cb /drivers/gpio | |
parent | da38ef3ed10a09248e13ae16530c2c6d448dc47d (diff) | |
download | linux-cbe706b0526837a9dfd26e4492c399e8ab0df5aa.tar.gz linux-cbe706b0526837a9dfd26e4492c399e8ab0df5aa.tar.bz2 linux-cbe706b0526837a9dfd26e4492c399e8ab0df5aa.zip |
gpio: mlxbf: Add dependency on 64BIT to Kconfig entry
Fixes a compile test failure
Fixes: c78c42d77165 ("gpio: add driver for Mellanox BlueField GPIO controller")
Signed-off-by: Shravan Kumar Ramani <sramani@mellanox.com>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 362da433593c..c7a174edeaa3 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -1304,7 +1304,7 @@ config GPIO_MERRIFIELD config GPIO_MLXBF tristate "Mellanox BlueField SoC GPIO" - depends on (MELLANOX_PLATFORM && ARM64 && ACPI) || COMPILE_TEST + depends on (MELLANOX_PLATFORM && ARM64 && ACPI) || (64BIT && COMPILE_TEST) select GPIO_GENERIC help Say Y here if you want GPIO support on Mellanox BlueField SoC. |