diff options
| author | Geert Uytterhoeven <[email protected]> | 2020-05-07 13:37:51 +0200 |
|---|---|---|
| committer | Linus Walleij <[email protected]> | 2020-05-16 11:23:11 +0200 |
| commit | 47fa5c971bbce2d97efb82da709deff60aaf7b3d (patch) | |
| tree | b506d9d6bf3001fdb22561e0556e80aa1ad590a6 | |
| parent | 80691a8ac7a43434ed2ecff15d560a9e5d90f613 (diff) | |
pinctrl: amd: Add ACPI dependency
Currently the AMD pin controller driver supports ACPI platform only.
Make the PINCTRL_AMD config symbol depend on ACPI, to avoid asking the
user about it when configuring a kernel without ACPI support.
Signed-off-by: Geert Uytterhoeven <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Linus Walleij <[email protected]>
| -rw-r--r-- | drivers/pinctrl/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig index 85030123a17e..ae4922b07d1d 100644 --- a/drivers/pinctrl/Kconfig +++ b/drivers/pinctrl/Kconfig @@ -95,6 +95,7 @@ config PINCTRL_AT91PIO4 config PINCTRL_AMD tristate "AMD GPIO pin control" depends on HAS_IOMEM + depends on ACPI || COMPILE_TEST select GPIOLIB select GPIOLIB_IRQCHIP select PINMUX |