diff options
| author | Simon Glass <[email protected]> | 2013-03-05 14:40:00 +0000 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2013-03-15 16:14:01 -0400 |
| commit | 9e97834867f496fde45d921a1d3fe213a6e8c7cd (patch) | |
| tree | 10be71a208304c12b8175e256eb30eb582180e5c | |
| parent | 4da2551efa05bfb365e24c4e593fcd18b5a732f8 (diff) | |
blackfin: Remove noreturn attribute from cpu_init_f()
Now that board_init_f() is not marked as noreturn, we need to do the same
to blackfin's cpu_init_f() function.
Signed-off-by: Simon Glass <[email protected]>
| -rw-r--r-- | arch/blackfin/cpu/cpu.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/blackfin/cpu/cpu.c b/arch/blackfin/cpu/cpu.c index b9fdb078bdd..0be2e2b835b 100644 --- a/arch/blackfin/cpu/cpu.c +++ b/arch/blackfin/cpu/cpu.c @@ -23,7 +23,6 @@ ulong bfin_poweron_retx; -__attribute__ ((__noreturn__)) void cpu_init_f(ulong bootflag, ulong loaded_from_ldr) { #ifndef CONFIG_BFIN_BOOTROM_USES_EVT1 |
