diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-07-06 12:49:45 (GMT) |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2016-07-07 12:58:38 (GMT) |
commit | 9bb45cd4470607028c4abdaa4063f1674661bb0e (patch) | |
tree | d3141dae0b9982fa63dec1777c4f37bd2e5ac7c0 /drivers/soc | |
parent | e517dfe67480fcca90831ac02e184859200bbaf6 (diff) | |
download | linux-9bb45cd4470607028c4abdaa4063f1674661bb0e.tar.xz |
soc: raspberrypi-power: add CONFIG_OF dependency
We get a harmless warning if the RASPBERRYPI_POWER driver is enabled without
CONFIG_OF during compile testing:
warning: RASPBERRYPI_POWER selects PM_GENERIC_DOMAINS_OF which has unmet direct dependencies (PM_GENERIC_DOMAINS && OF)
There is no need to select PM_GENERIC_DOMAINS_OF if OF is set, so we can
replace the 'select' with a dependency.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/soc')
-rw-r--r-- | drivers/soc/bcm/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/soc/bcm/Kconfig b/drivers/soc/bcm/Kconfig index 97156ae..a39b0d5 100644 --- a/drivers/soc/bcm/Kconfig +++ b/drivers/soc/bcm/Kconfig @@ -2,10 +2,9 @@ menu "Broadcom SoC drivers" config RASPBERRYPI_POWER bool "Raspberry Pi power domain driver" - depends on ARCH_BCM2835 || COMPILE_TEST + depends on ARCH_BCM2835 || (COMPILE_TEST && OF) depends on RASPBERRYPI_FIRMWARE=y select PM_GENERIC_DOMAINS if PM - select PM_GENERIC_DOMAINS_OF if PM help This enables support for the RPi power domains which can be enabled or disabled via the RPi firmware. |