diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-01-19 21:02:00 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-04-07 01:08:42 -0400 |
commit | 38b9b7446ecd3a728bad3e1913a984628a7363fb (patch) | |
tree | 1c2c54264b2dbe5983dd24c887b3613f82964af2 | |
parent | 03f7053f70bc55b50c9d23e54f90d772419300a6 (diff) |
Blackfin: relax .data alignment
The strictest alignment on Blackfin systems is 32bits (since that is the
largest load instruction), so don't force 256byte alignment here.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | lib_blackfin/u-boot.lds.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_blackfin/u-boot.lds.S b/lib_blackfin/u-boot.lds.S index 3be341fad0f..9a757c69842 100644 --- a/lib_blackfin/u-boot.lds.S +++ b/lib_blackfin/u-boot.lds.S @@ -100,7 +100,7 @@ SECTIONS .data : { - . = ALIGN(256); + . = ALIGN(4); *(.data .data.*) *(.data1) *(.sdata) |