diff options
Diffstat (limited to 'lib_ppc/board.c')
| -rw-r--r-- | lib_ppc/board.c | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 10f70087a..92ebbd941 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -505,14 +505,14 @@ void board_init_f (ulong bootflag)      /* store bootparam to sram (backward compatible), here? */      { -        u32 *sram = (u32 *)CFG_SRAM_BASE; -        *sram++ = gd->ram_size; -        *sram++ = gd->bus_clk; -        *sram++ = gd->inp_clk; -        *sram++ = gd->cpu_clk; -        *sram++ = gd->vco_clk; -        *sram++ = gd->flb_clk; -        *sram++ = 0xb8c3ba11;  /* boot signature */ +	u32 *sram = (u32 *)CFG_SRAM_BASE; +	*sram++ = gd->ram_size; +	*sram++ = gd->bus_clk; +	*sram++ = gd->inp_clk; +	*sram++ = gd->cpu_clk; +	*sram++ = gd->vco_clk; +	*sram++ = gd->flb_clk; +	*sram++ = 0xb8c3ba11;  /* boot signature */      }  #endif |