Re: [U-Boot] [PATCH V4] ARM: prevent misaligned array inits

2012-10-09 Thread Tom Rini
On Tue, Oct 09, 2012 at 08:42:26PM +0200, Albert ARIBAUD wrote: > Hi Tom, > > On Tue, 9 Oct 2012 11:34:11 -0700, Tom Rini wrote: > > > On Mon, Oct 08, 2012 at 09:50:18PM +0200, Albert ARIBAUD wrote: > > > > > Under option -munaligned-access, gcc can perform local char > > > or 16-bit array init

Re: [U-Boot] [PATCH V4] ARM: prevent misaligned array inits

2012-10-09 Thread Albert ARIBAUD
Hi Tom, On Tue, 9 Oct 2012 11:34:11 -0700, Tom Rini wrote: > On Mon, Oct 08, 2012 at 09:50:18PM +0200, Albert ARIBAUD wrote: > > > Under option -munaligned-access, gcc can perform local char > > or 16-bit array initializations using misaligned native > > accesses which will throw a data abort e

Re: [U-Boot] [PATCH V4] ARM: prevent misaligned array inits

2012-10-09 Thread Tom Rini
On Mon, Oct 08, 2012 at 09:50:18PM +0200, Albert ARIBAUD wrote: > Under option -munaligned-access, gcc can perform local char > or 16-bit array initializations using misaligned native > accesses which will throw a data abort exception. Fix files > where these array initializations were unneeded, a