diff options
author | Tony Lindgren <tony@atomide.com> | 2020-02-11 20:15:02 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2020-03-30 09:34:57 +0300 |
commit | c703797c1d5466f9af70bc7692fa49399107e66c (patch) | |
tree | 62baae9f77f4c771fe6af8a6434e1dd90918acc6 /drivers | |
parent | f8db89d14efb770dd59aa0ca74386e5de68310d5 (diff) | |
download | linux-c703797c1d5466f9af70bc7692fa49399107e66c.tar.xz |
mfd: cpcap: Fix compile if MFD_CORE is not selected
If only cpcap mfd driver is selected we will get:
ERROR: "devm_mfd_add_devices" [drivers/mfd/motorola-cpcap.ko] undefined!
This is because Kconfig is missing select for MFD_CORE.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mfd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index da4a9a0c5ca2..611fe602f213 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -906,6 +906,7 @@ config MFD_CPCAP tristate "Support for Motorola CPCAP" depends on SPI depends on OF || COMPILE_TEST + select MFD_CORE select REGMAP_SPI select REGMAP_IRQ help |