diff options
author | Michael Scott <michael.scott@linaro.org> | 2016-10-21 20:56:08 +0300 |
---|---|---|
committer | Andy Gross <andy.gross@linaro.org> | 2016-11-13 08:24:26 +0300 |
commit | e19811a89d0f566bb781959e151f244bd3bcde8a (patch) | |
tree | 56824cb38e4be687942f3a9a51d4be29e40c0aa3 /arch/arm64/Kconfig.platforms | |
parent | 1001354ca34179f3db924eb66672442a173147dc (diff) | |
download | linux-e19811a89d0f566bb781959e151f244bd3bcde8a.tar.xz |
arm64: qcom: enable GPIOLIB in Kconfig
While debugging a kernel image size issue, I discovered that if all
non ARCH_QCOM configs in the ARM64 defconfig are disabled, the QCOM
pinctrl drivers will not be built.
The QCOM pinctrl drivers have a dependency on GPIOLIB which was being
selected when other ARCH configs were enabled, but ARCH_QCOM doesn't
select GPIOLIB directly. Let's select GPIOLIB here to ensure the pinctrl
drivers are built for QCOM platforms.
Signed-off-by: Michael Scott <michael.scott@linaro.org>
Signed-off-by: Andy Gross <andy.gross@linaro.org>
Diffstat (limited to 'arch/arm64/Kconfig.platforms')
-rw-r--r-- | arch/arm64/Kconfig.platforms | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms index cfbdf02ef566..e9fc22645b7f 100644 --- a/arch/arm64/Kconfig.platforms +++ b/arch/arm64/Kconfig.platforms @@ -113,6 +113,7 @@ config ARCH_MVEBU config ARCH_QCOM bool "Qualcomm Platforms" + select GPIOLIB select PINCTRL help This enables support for the ARMv8 based Qualcomm chipsets. |