diff mbox series

[v2,05/21] mips: enable _machine_restart for spl

Message ID d9f805b380a05ad2a6fba1fd56854ffdf1d782fd.1604047991.git.weijie.gao@mediatek.com
State Superseded
Delegated to: Tom Rini
Headers show
Series Add support for MediaTek MT7620 SoC | expand

Commit Message

Weijie Gao (高惟杰) Oct. 30, 2020, 9:33 a.m. UTC
The sysreset driver has a config CONFIG_SPL_SYSRESET for the spl stage.
Change CONFIG_SYSRESET to CONFIG_IS_ENABLED(SYSRESET) will give spl a
chance to use _machine_restart instead of the sysreset driver.

Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
---
v2 changes: new
---
 arch/mips/cpu/cpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass Nov. 3, 2020, 3:12 p.m. UTC | #1
On Fri, 30 Oct 2020 at 03:34, Weijie Gao <weijie.gao@mediatek.com> wrote:
>
> The sysreset driver has a config CONFIG_SPL_SYSRESET for the spl stage.
> Change CONFIG_SYSRESET to CONFIG_IS_ENABLED(SYSRESET) will give spl a
> chance to use _machine_restart instead of the sysreset driver.
>
> Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
> ---
> v2 changes: new
> ---
>  arch/mips/cpu/cpu.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
diff mbox series

Patch

diff --git a/arch/mips/cpu/cpu.c b/arch/mips/cpu/cpu.c
index 7d5c9fd83a..b304026a67 100644
--- a/arch/mips/cpu/cpu.c
+++ b/arch/mips/cpu/cpu.c
@@ -12,7 +12,7 @@ 
 #include <asm/mipsregs.h>
 #include <asm/reboot.h>
 
-#ifndef CONFIG_SYSRESET
+#if !CONFIG_IS_ENABLED(SYSRESET)
 void __weak _machine_restart(void)
 {
 	fprintf(stderr, "*** reset failed ***\n");