diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-01-13 16:36:40 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2023-01-16 15:14:03 +0100 |
commit | 083b0230e040c5857f8c0a76119e5997e449a35c (patch) | |
tree | b23ad898c86733118793d15d16607456bc5c2629 /drivers/pinctrl/Kconfig | |
parent | aeb3c200db418207ae9aa426bd128527cb688b66 (diff) | |
download | linux-stable-083b0230e040c5857f8c0a76119e5997e449a35c.tar.gz linux-stable-083b0230e040c5857f8c0a76119e5997e449a35c.tar.bz2 linux-stable-083b0230e040c5857f8c0a76119e5997e449a35c.zip |
pinctrl: digicolor: Use proper headers and drop OF dependency
The driver doesn't depend on the OF to be complied. Hence
the proper header to use is mod_devicetable.h. Replace of*.h with
the above mentioned and drop redundant dependency.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Baruch Siach <baruch@tkos.co.il>
Link: https://lore.kernel.org/r/20230113143640.24302-2-andriy.shevchenko@linux.intel.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/Kconfig')
-rw-r--r-- | drivers/pinctrl/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig index 7d5f5458c72e..dcb53c4a9584 100644 --- a/drivers/pinctrl/Kconfig +++ b/drivers/pinctrl/Kconfig @@ -172,7 +172,7 @@ config PINCTRL_DA9062 config PINCTRL_DIGICOLOR bool - depends on OF && (ARCH_DIGICOLOR || COMPILE_TEST) + depends on ARCH_DIGICOLOR || COMPILE_TEST select PINMUX select GENERIC_PINCONF |