Re: [U-Boot] [PATCH] OMAP-common/timer: Fix bss usage

2010-11-29 Thread Wolfgang Denk
Dear Thomas Weber, In message <1291046912-15167-1-git-send-email-we...@corscience.de> you wrote: > This patch fixes the bss usage in ARMv7/omap-common/timer.c > > The .bss section cannot be used before the relocation, because this > section is overlayed with .rel.dyn section. No, this is not cor

Re: [U-Boot] [PATCH] OMAP-common/timer: Fix bss usage

2010-11-29 Thread Thomas Weber
Hello Heiko, On Mon, Nov 29, 2010 at 6:25 PM, Heiko Schocher wrote: > Hello Thomas, > > Thomas Weber wrote: >> This patch fixes the bss usage in ARMv7/omap-common/timer.c >> >> The .bss section cannot be used before the relocation, because this >> section is overlayed with .rel.dyn section. >> >>

Re: [U-Boot] [PATCH] OMAP-common/timer: Fix bss usage

2010-11-29 Thread Heiko Schocher
Hello Thomas, Thomas Weber wrote: > This patch fixes the bss usage in ARMv7/omap-common/timer.c > > The .bss section cannot be used before the relocation, because this > section is overlayed with .rel.dyn section. > > Suggested-by: Andreas Biessmann > Signed-off-by: Thomas Weber > --- > arch/

[U-Boot] [PATCH] OMAP-common/timer: Fix bss usage

2010-11-29 Thread Thomas Weber
This patch fixes the bss usage in ARMv7/omap-common/timer.c The .bss section cannot be used before the relocation, because this section is overlayed with .rel.dyn section. Suggested-by: Andreas Biessmann Signed-off-by: Thomas Weber --- arch/arm/cpu/armv7/omap-common/timer.c |6 ++ 1 fi