diff options
author | Maxime Ripard <maxime.ripard@bootlin.com> | 2019-03-22 12:16:50 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2019-04-03 10:38:07 +0300 |
commit | a05a2e7998ab1badcf80aed47b5313934fd131fa (patch) | |
tree | 18ad184912fcd3d2819c7f15faf85cdea23394d0 /drivers/mfd/Kconfig | |
parent | 1d71670e5e09680202c975c2332bcd2b64e8091f (diff) | |
download | linux-a05a2e7998ab1badcf80aed47b5313934fd131fa.tar.xz |
mfd: sun6i-prcm: Allow to compile with COMPILE_TEST
Since this driver only has a dependency on ARCH_SUNXI just because it
doesn't make any sense to run it on something else, we can definitely
enable it through COMPILE_TEST as well to get some build coverage.
Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/Kconfig')
-rw-r--r-- | drivers/mfd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 0ce2d8dfc5f1..26ad6468d13a 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -1246,7 +1246,7 @@ config MFD_STA2X11 config MFD_SUN6I_PRCM bool "Allwinner A31 PRCM controller" - depends on ARCH_SUNXI + depends on ARCH_SUNXI || COMPILE_TEST select MFD_CORE help Support for the PRCM (Power/Reset/Clock Management) unit available |