mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-11 22:03:15 +00:00
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>
This commit is contained in:
parent
03f7053f70
commit
38b9b7446e
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ SECTIONS
|
||||||
|
|
||||||
.data :
|
.data :
|
||||||
{
|
{
|
||||||
. = ALIGN(256);
|
. = ALIGN(4);
|
||||||
*(.data .data.*)
|
*(.data .data.*)
|
||||||
*(.data1)
|
*(.data1)
|
||||||
*(.sdata)
|
*(.sdata)
|
||||||
|
|
Loading…
Reference in a new issue