diff options
| author | Marek Vasut <[email protected]> | 2023-06-23 21:56:27 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-06-24 13:46:58 -0400 |
| commit | 68dcbdd594d4172632ca6b122c56ec87ca551cf4 (patch) | |
| tree | 75825d5b0431ef4ae4406b60b0bd2d83fbbbf238 | |
| parent | ae3e3fa570f48fe582a012e3a4679fb293c7b235 (diff) | |
ARM: imx: Add weak default reset_cpu()
Add weak default reset_cpu() implementation needed by e.g. panic().
Signed-off-by: Marek Vasut <[email protected]>
| -rw-r--r-- | arch/arm/mach-imx/cpu.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/cpu.c b/arch/arm/mach-imx/cpu.c index 702cfc33275..488638c9058 100644 --- 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) +{ +} |
