From: Takashi YOSHII Date: Wed, 23 May 2007 03:34:13 +0000 (+0900) Subject: sh: Align .machvec.init section on a 4-byte boundary. X-Git-Tag: firefly_0821_release~27981^2~56 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=3a3c60fc0b4c2e3e6f037f68c84ddd9468b2a196;p=firefly-linux-kernel-4.4.55.git sh: Align .machvec.init section on a 4-byte boundary. .machvec.init can be misaligned with the recent machvec changes, forcibly align it on the boundary that it expects, as before. Signed-off-by: Takashi YOSHII Signed-off-by: Paul Mundt --- diff --git a/arch/sh/kernel/vmlinux.lds.S b/arch/sh/kernel/vmlinux.lds.S index f437a4f06da4..992c25ad377f 100644 --- a/arch/sh/kernel/vmlinux.lds.S +++ b/arch/sh/kernel/vmlinux.lds.S @@ -97,6 +97,7 @@ SECTIONS __initramfs_end = .; #endif + . = ALIGN(4); __machvec_start = .; .machvec.init : { *(.machvec.init) } __machvec_end = .;