mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-19 11:24:42 +00:00
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:
parent
ae3e3fa570
commit
68dcbdd594
1 changed files with 4 additions and 0 deletions
|
@ -510,3 +510,7 @@ char nxp_board_rev_string(void)
|
||||||
return (*rev + nxp_board_rev() - 1);
|
return (*rev + nxp_board_rev() - 1);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
__weak void reset_cpu(void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue