diff options
| author | Stefano Babic <sbabic@denx.de> | 2012-11-10 08:05:54 +0100 | 
|---|---|---|
| committer | Stefano Babic <sbabic@denx.de> | 2012-11-10 08:05:54 +0100 | 
| commit | 3e4d27b06d7484040355e22eec2cbce7335d6dab (patch) | |
| tree | 9672a2bb2e4ce0edc0ab776ddf0e2ca8e39a5f62 /arch/powerpc/lib/board.c | |
| parent | bad05afe083eec0467220de21683443292c5012e (diff) | |
| parent | 59852d03867108217fe88e3bfc3e1e9cedfe63c5 (diff) | |
| download | olio-uboot-2014.01-3e4d27b06d7484040355e22eec2cbce7335d6dab.tar.xz olio-uboot-2014.01-3e4d27b06d7484040355e22eec2cbce7335d6dab.zip | |
Merge git://git.denx.de/u-boot
Diffstat (limited to 'arch/powerpc/lib/board.c')
| -rw-r--r-- | arch/powerpc/lib/board.c | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/arch/powerpc/lib/board.c b/arch/powerpc/lib/board.c index b860141ef..1b051e11c 100644 --- a/arch/powerpc/lib/board.c +++ b/arch/powerpc/lib/board.c @@ -163,7 +163,7 @@ static int init_baudrate(void)  /***********************************************************************/ -void __board_add_ram_info(int use_default) +static void __board_add_ram_info(int use_default)  {  	/* please define platform specific board_add_ram_info() */  } @@ -171,7 +171,7 @@ void __board_add_ram_info(int use_default)  void board_add_ram_info(int)  	__attribute__ ((weak, alias("__board_add_ram_info"))); -int __board_flash_wp_on(void) +static int __board_flash_wp_on(void)  {  	/*  	 * Most flashes can't be detected when write protection is enabled, @@ -184,7 +184,7 @@ int __board_flash_wp_on(void)  int board_flash_wp_on(void)  	__attribute__ ((weak, alias("__board_flash_wp_on"))); -void __cpu_secondary_init_r(void) +static void __cpu_secondary_init_r(void)  {  } @@ -262,7 +262,7 @@ static int init_func_watchdog_reset(void)   * Initialization sequence   */ -init_fnc_t *init_sequence[] = { +static init_fnc_t *init_sequence[] = {  #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)  	probecpu,  #endif @@ -345,7 +345,7 @@ ulong get_effective_memsize(void)  #endif  } -int __fixup_cpu(void) +static int __fixup_cpu(void)  {  	return 0;  } @@ -402,7 +402,7 @@ void board_init_f(ulong bootflag)  #ifdef CONFIG_POST  	post_bootmode_init(); -	post_run(NULL, POST_ROM | post_bootmode_get(0)); +	post_run(NULL, POST_ROM | post_bootmode_get(NULL));  #endif  	WATCHDOG_RESET(); @@ -440,8 +440,8 @@ void board_init_f(ulong bootflag)  	 * We need to make sure the location we intend to put secondary core  	 * boot code is reserved and not used by any part of u-boot  	 */ -	if (addr > determine_mp_bootpg()) { -		addr = determine_mp_bootpg(); +	if (addr > determine_mp_bootpg(NULL)) { +		addr = determine_mp_bootpg(NULL);  		debug("Reserving MP boot page to %08lx\n", addr);  	}  #endif |