projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03f7053
)
Blackfin: relax .data alignment
author
Mike Frysinger
<vapier@gentoo.org>
Wed, 20 Jan 2010 02:02:00 +0000
(21:02 -0500)
committer
Mike Frysinger
<vapier@gentoo.org>
Wed, 7 Apr 2010 05:08:42 +0000
(
01:08
-0400)
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>
lib_blackfin/u-boot.lds.S
patch
|
blob
|
history
diff --git
a/lib_blackfin/u-boot.lds.S
b/lib_blackfin/u-boot.lds.S
index 3be341fad0f327713d33344213ccf8bafe7448fc..9a757c6984240ccd907b762e01b4f1612a42b214 100644
(file)
--- 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)