diff options
author | Samuel Holland <samuel@sholland.org> | 2021-11-03 22:55:11 -0500 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2021-11-04 08:57:19 +0100 |
commit | 6b84217227e81cdcefdc849e626a3e143beb2f62 (patch) | |
tree | 9d9ea8aa6d2603ddf8b10b54f02620238aa0c681 | |
parent | bc18582a1471384e3c4584dfd17f48a91c88445d (diff) | |
download | u-boot-6b84217227e81cdcefdc849e626a3e143beb2f62.zip u-boot-6b84217227e81cdcefdc849e626a3e143beb2f62.tar.gz u-boot-6b84217227e81cdcefdc849e626a3e143beb2f62.tar.bz2 |
sysreset: Add uclass Kconfig dependency to drivers
None of the sysreset drivers do anything beyond providing sysreset
uclass ops. They should depend on the sysreset uclass.
Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Signed-off-by: Samuel Holland <samuel@sholland.org>
Reviewed-by: Stefan Roese <sr@denx.de>
-rw-r--r-- | drivers/sysreset/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/sysreset/Kconfig b/drivers/sysreset/Kconfig index 43a948c..de75c9c 100644 --- a/drivers/sysreset/Kconfig +++ b/drivers/sysreset/Kconfig @@ -118,8 +118,6 @@ config SYSRESET_TI_SCI This enables the system reset driver support over TI System Control Interface available on some new TI's SoCs. -endif - config SYSRESET_SYSCON bool "Enable support for mfd syscon reboot driver" select REGMAP @@ -162,4 +160,6 @@ config SYSRESET_MPC83XX help Reboot support for NXP MPC83xx SoCs. +endif + endmenu |