diff options
author | Tom Rini <trini@konsulko.com> | 2023-06-24 21:36:19 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-06-24 21:36:19 -0400 |
commit | f95232c6f06cc0747801bb6a4372b33825ab0164 (patch) | |
tree | 4e179f7c6962564dd11fba3d6bb551603b368457 /arch/mips/cpu/cpu.c | |
parent | b2101df305212dd3b98486cbec1d1f15da0832de (diff) | |
parent | 6039e0edc8540bd2abee780549b260bdaf089168 (diff) |
Merge branch '2023-06-23-assorted-important-fixes'
- Merge in a few important fixes. This includes a (partial) regression
fix, updating documentation and some sanity checking around image
loading.
Diffstat (limited to 'arch/mips/cpu/cpu.c')
-rw-r--r-- | arch/mips/cpu/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/cpu/cpu.c b/arch/mips/cpu/cpu.c index b304026a67c..f0e20da28f7 100644 --- a/arch/mips/cpu/cpu.c +++ b/arch/mips/cpu/cpu.c @@ -15,7 +15,7 @@ #if !CONFIG_IS_ENABLED(SYSRESET) void __weak _machine_restart(void) { - fprintf(stderr, "*** reset failed ***\n"); + puts("*** reset failed ***\n"); while (1) /* NOP */; |