Skip to content
Snippets Groups Projects
Commit 84682854 authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Sonic Zhang
Browse files

blackfin: fix a warning in arch/blackfin/cpu/cpu.c


This commit fixes:
    cpu.c:107: warning: ‘noreturn’ function does return

Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: default avatarSonic Zhang <sonic.zhang@analog.com>
parent 509dca7a
No related branches found
No related tags found
No related merge requests found
......@@ -104,6 +104,9 @@ void cpu_init_f(ulong bootflag, ulong loaded_from_ldr)
serial_early_puts("Board init flash\n");
board_init_f(bootflag);
/* should not be reached */
while (1);
}
int exception_init(void)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment