Re: [U-Boot] [PATCH v5 16/23] Adjust board_f.c for ppc

2013-02-12 Thread Scott Wood
On 02/12/2013 04:41:15 PM, Simon Glass wrote: Hi Scott, On Tue, Feb 12, 2013 at 2:32 PM, Scott Wood wrote: > On 02/08/2013 09:12:12 AM, Simon Glass wrote: >> >> #ifndef CONFIG_SPL_BUILD >> static int reserve_stacks(void) >> { >> +#ifdef CONFIG_PPC >> + ulong *s; >> +#endif >> + >>

Re: [U-Boot] [PATCH v5 16/23] Adjust board_f.c for ppc

2013-02-12 Thread Simon Glass
Hi Scott, On Tue, Feb 12, 2013 at 2:32 PM, Scott Wood wrote: > On 02/08/2013 09:12:12 AM, Simon Glass wrote: >> >> #ifndef CONFIG_SPL_BUILD >> static int reserve_stacks(void) >> { >> +#ifdef CONFIG_PPC >> + ulong *s; >> +#endif >> + >> /* setup stack pointer for exceptions */ >>

Re: [U-Boot] [PATCH v5 16/23] Adjust board_f.c for ppc

2013-02-12 Thread Scott Wood
On 02/08/2013 09:12:12 AM, Simon Glass wrote: #ifndef CONFIG_SPL_BUILD static int reserve_stacks(void) { +#ifdef CONFIG_PPC + ulong *s; +#endif + /* setup stack pointer for exceptions */ gd->dest_addr_sp -= 16; gd->dest_addr_sp &= ~0xf; @@ -398,6 +532,14 @@ static

[U-Boot] [PATCH v5 16/23] Adjust board_f.c for ppc

2013-02-08 Thread Simon Glass
This adds ppc features to the generic pre-relocation board init. This is a separate commit so that these features are clearly shown. Signed-off-by: Simon Glass --- Changes in v5: - Use watchdog.h for watchdog functions - Add define to work around __bss_end / __bss_end__ confusion Changes in v4: