ARM: imx: Add weak default reset_cpu()

Add weak default reset_cpu() implementation needed by e.g. panic().

Signed-off-by: Marek Vasut <marex@denx.de>
This commit is contained in:
Marek Vasut 2023-06-23 21:56:27 +02:00 committed by Tom Rini
parent ae3e3fa570
commit 68dcbdd594

View File

@ -510,3 +510,7 @@ char nxp_board_rev_string(void)
return (*rev + nxp_board_rev() - 1);
}
#endif
__weak void reset_cpu(void)
{
}