diff options
| author | Tom Rini <[email protected]> | 2024-11-15 10:53:57 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-12-04 14:00:30 -0600 |
| commit | 26a2b69b2440d261a3fd814d37d023e704e92853 (patch) | |
| tree | 84e69aaf244c0a07535e96d80056f031514a926b | |
| parent | c498b6cace9e0de45ea12146312f5a6f43a03a9b (diff) | |
aspeed: Fix Kconfig logic on "DM_RESET" and ASPEED_AST2500
It is not the case that we can only pick ASPEED_AST2500 if DM_RESET
is enabled, but rather choosing ASPEED_AST2500 means we must select
DM_RESET.
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | arch/arm/mach-aspeed/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-aspeed/Kconfig b/arch/arm/mach-aspeed/Kconfig index 1e7dc10e170..9cf60378c11 100644 --- a/arch/arm/mach-aspeed/Kconfig +++ b/arch/arm/mach-aspeed/Kconfig @@ -16,8 +16,8 @@ choice config ASPEED_AST2500 bool "Support Aspeed AST2500 SoC" - depends on DM_RESET select CPU_ARM1176 + select DM_RESET help The Aspeed AST2500 is a ARM-based SoC with arm1176 CPU. It is used as Board Management Controller on many server boards, |
