diff options
author | York Sun | 2014-04-30 14:43:47 -0700 |
---|---|---|
committer | York Sun | 2014-05-13 08:31:22 -0700 |
commit | 701e640145474131161de53a407d95d0d2f77082 (patch) | |
tree | bc6609cccfed9ec35f3c697bb6b8a7deecdc7058 /arch/powerpc/cpu/mpc85xx/start.S | |
parent | bffac7aef54039dbe53dbf8bcbc9f8dbe78b8aa5 (diff) |
powerpc/mpc85xx: Fix boot_flag for calling board_init_f()
baord_init_f takes one argument, boot_flag. It has not been used for
powerpc, until recently changing to use generic board architecture.
The boot flag is added as a return value from cpu_init_f().
Signed-off-by: York Sun <yorksun@freescale.com>
CC: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx/start.S')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/start.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/start.S b/arch/powerpc/cpu/mpc85xx/start.S index 01491464587..d8c9fb6b287 100644 --- a/arch/powerpc/cpu/mpc85xx/start.S +++ b/arch/powerpc/cpu/mpc85xx/start.S @@ -1158,7 +1158,7 @@ _start_cont: mtmsr r3 isync - bl cpu_init_f + bl cpu_init_f /* return boot_flag for calling board_init_f */ bl board_init_f isync |