diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-10-14 16:14:15 +0300 |
---|---|---|
committer | Sebastian Reichel <sebastian.reichel@collabora.com> | 2020-10-15 22:37:59 +0300 |
commit | 7007fab4ae82c092cb52691c338f1b776005e32b (patch) | |
tree | 367eab68ac165c9869ef957b499530f4dbf0a10a /drivers/power/reset | |
parent | 6c59a17b0d59dbffa62d0b3b8e648ccad02ea82f (diff) | |
download | linux-7007fab4ae82c092cb52691c338f1b776005e32b.tar.xz |
power: reset: POWER_RESET_OCELOT_RESET should depend on Ocelot or Sparx5
To add support for Sparx5, the dependency on MSCC_OCELOT was removed.
However, this increases exposure of the driver question not only to
Sparx5 platforms, but to everyone. Hence re-add the dependency on
MSCC_OCELOT, and extend it with ARCH_SPARX5, to prevent asking the user
about this driver when configuring a kernel without Ocelot and Sparx5
support.
Fixes: ec871696b7776767 ("power: reset: ocelot: Add support for Sparx5")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power/reset')
-rw-r--r-- | drivers/power/reset/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/reset/Kconfig b/drivers/power/reset/Kconfig index 6361569aacb7..d55b3727e00e 100644 --- a/drivers/power/reset/Kconfig +++ b/drivers/power/reset/Kconfig @@ -129,6 +129,7 @@ config POWER_RESET_QCOM_PON config POWER_RESET_OCELOT_RESET bool "Microsemi Ocelot reset driver" + depends on MSCC_OCELOT || ARCH_SPARX5 || COMPILE_TEST select MFD_SYSCON help This driver supports restart for Microsemi Ocelot SoC and similar. |