diff options
| author | Simon Glass <sjg@chromium.org> | 2012-12-13 20:48:48 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-02-04 09:04:57 -0500 | 
| commit | 67ac13b1b9b6ca00893714fbc8cbf556bab6fd59 (patch) | |
| tree | 465b1934f005865689bffc75469160894bf1c361 /arch/powerpc/lib/board.c | |
| parent | c6731fe22ab1cc2f5c2b8be9b1db276d777f12c3 (diff) | |
| download | olio-uboot-2014.01-67ac13b1b9b6ca00893714fbc8cbf556bab6fd59.tar.xz olio-uboot-2014.01-67ac13b1b9b6ca00893714fbc8cbf556bab6fd59.zip | |
ppc: Move lbc_clk and cpu to arch_global_data
Move these fields into arch_global_data and tidy up.
Signed-off-by: Simon Glass <sjg@chromium.org>
[trini: Update for bsc9132qds.c, b4860qds.c]
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/powerpc/lib/board.c')
| -rw-r--r-- | arch/powerpc/lib/board.c | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/arch/powerpc/lib/board.c b/arch/powerpc/lib/board.c index 988039f33..22bd713d6 100644 --- a/arch/powerpc/lib/board.c +++ b/arch/powerpc/lib/board.c @@ -649,10 +649,11 @@ void board_init_r(gd_t *id, ulong dest_addr)  #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)  	/* -	 * The gd->cpu pointer is set to an address in flash before relocation. -	 * We need to update it to point to the same CPU entry in RAM. +	 * The gd->arch.cpu pointer is set to an address in flash before +	 * relocation.  We need to update it to point to the same CPU entry +	 * in RAM.  	 */ -	gd->cpu += dest_addr - CONFIG_SYS_MONITOR_BASE; +	gd->arch.cpu += dest_addr - CONFIG_SYS_MONITOR_BASE;  	/*  	 * If we didn't know the cpu mask & # cores, we can save them of |