diff options
author | Peter Robinson <[email protected]> | 2023-10-09 14:58:18 +0100 |
---|---|---|
committer | Sebastian Reichel <[email protected]> | 2023-10-13 02:33:00 +0200 |
commit | 3c693ac29e3fb4e1d88652e633a9dc16e1dd76e4 (patch) | |
tree | 091c957256fddea3a6c917eeddb5af0c1bde590f | |
parent | d03d2a8cdefe86f04cfb53934a708620e7dfbfcb (diff) |
power: reset: brcmstb: Depend on actual SoC dependencies
Depend on the explicit SoC defines rather than generic
architectures like most of the rest of the HW drivers do.
This makes the drivers only available for the HW and for
compile testing.
Signed-off-by: Peter Robinson <[email protected]>
Cc: Sebastian Reichel <[email protected]>
Cc: [email protected]
Acked-by: Florian Fainelli <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Sebastian Reichel <[email protected]>
-rw-r--r-- | drivers/power/reset/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/reset/Kconfig b/drivers/power/reset/Kconfig index 59e1ebb7842e..b9733fa40276 100644 --- a/drivers/power/reset/Kconfig +++ b/drivers/power/reset/Kconfig @@ -66,7 +66,7 @@ config POWER_RESET_BRCMKONA config POWER_RESET_BRCMSTB bool "Broadcom STB reset driver" - depends on ARM || ARM64 || MIPS || COMPILE_TEST + depends on ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST depends on MFD_SYSCON default ARCH_BRCMSTB || BMIPS_GENERIC help |