projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ae3e3fa
)
ARM: imx: Add weak default reset_cpu()
author
Marek Vasut
<marex@denx.de>
Fri, 23 Jun 2023 19:56:27 +0000
(21:56 +0200)
committer
Tom Rini
<trini@konsulko.com>
Sat, 24 Jun 2023 17:46:58 +0000
(13:46 -0400)
Add weak default reset_cpu() implementation needed by e.g. panic().
Signed-off-by: Marek Vasut <marex@denx.de>
arch/arm/mach-imx/cpu.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-imx/cpu.c
b/arch/arm/mach-imx/cpu.c
index
702cfc3
..
488638c
100644
(file)
--- a/
arch/arm/mach-imx/cpu.c
+++ b/
arch/arm/mach-imx/cpu.c
@@
-510,3
+510,7
@@
char nxp_board_rev_string(void)
return (*rev + nxp_board_rev() - 1);
}
#endif
+
+__weak void reset_cpu(void)
+{
+}