Skip to content
Snippets Groups Projects
Commit 1f94d162 authored by Stefan Roese's avatar Stefan Roese
Browse files

[PATCH] 4xx: Fix problem with board specific reset code


Signed-off-by: default avatarStefan Roese <sr@denx.de>
parent ec0c2ec7
No related branches found
No related tags found
No related merge requests found
......@@ -426,6 +426,9 @@ int ppc440spe_revB() {
int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
{
#if defined(CONFIG_BOARD_RESET)
board_reset();
#else /* defined(CONFIG_BOARD_RESET) */
#if defined(CFG_4xx_RESET_TYPE)
mtspr(dbcr0, CFG_4xx_RESET_TYPE << 28);
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment