diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-03-23 15:18:19 +0100 |
---|---|---|
committer | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-03-23 15:22:17 +0100 |
commit | 559e4a3df02991456113089996df1168a74c2e0a (patch) | |
tree | 82ef63dabdb2c60196d98c2c9494dbfbda862131 | |
parent | mips: ar7: include linux/gpio/driver.h (diff) | |
download | linux-559e4a3df02991456113089996df1168a74c2e0a.tar.xz linux-559e4a3df02991456113089996df1168a74c2e0a.zip |
powerpc/40x: Add missing select OF_GPIO_MM_GPIOCHIP
Since the split of the legacy of_mm_gpio_chip to a separate
file and a specific build configuration option, the users
must select it when needed. The PowerPC 40x code misses this,
so we have to add the select here.
Fixes: a99cc66807d6 ("gpiolib: split of_mm_gpio_chip out of linux/of_gpio.h")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
-rw-r--r-- | arch/powerpc/platforms/40x/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/40x/Kconfig b/arch/powerpc/platforms/40x/Kconfig index 614ea6dc994c..b3c466c50535 100644 --- a/arch/powerpc/platforms/40x/Kconfig +++ b/arch/powerpc/platforms/40x/Kconfig @@ -65,6 +65,7 @@ config PPC4xx_GPIO bool "PPC4xx GPIO support" depends on 40x select GPIOLIB + select OF_GPIO_MM_GPIOCHIP help Enable gpiolib support for ppc40x based boards |