summaryrefslogtreecommitdiffstats
path: root/arch/h8300/boot
diff options
context:
space:
mode:
authorYoshinori Sato2015-11-15 15:11:09 +0100
committerYoshinori Sato2016-01-20 14:43:26 +0100
commit3724d3188980cc7416d81acc9bee21161ee20ebd (patch)
tree254eb41dd8404a9535a34b5c16321fcf7c0cc0e1 /arch/h8300/boot
parentMerge tag 'leds-for-4.5' of git://git.kernel.org/pub/scm/linux/kernel/git/j.a... (diff)
downloadkernel-qcow2-linux-3724d3188980cc7416d81acc9bee21161ee20ebd.tar.gz
kernel-qcow2-linux-3724d3188980cc7416d81acc9bee21161ee20ebd.tar.xz
kernel-qcow2-linux-3724d3188980cc7416d81acc9bee21161ee20ebd.zip
h8300: zImage alignment fix
Missing alignment for .data section. Sometime bootup failed. Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Diffstat (limited to 'arch/h8300/boot')
-rw-r--r--arch/h8300/boot/compressed/vmlinux.lds1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/h8300/boot/compressed/vmlinux.lds b/arch/h8300/boot/compressed/vmlinux.lds
index 44fd209db88a..c39dc95fbad8 100644
--- a/arch/h8300/boot/compressed/vmlinux.lds
+++ b/arch/h8300/boot/compressed/vmlinux.lds
@@ -16,6 +16,7 @@ SECTIONS
.data :
{
+ . = ALIGN(0x4) ;
__sdata = . ;
___data_start = . ;
*(.data.*)