aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2021-03-17 12:34:50 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2021-03-17 12:34:50 -0700
commite69beeabac6dae8d4318f46c7aa0c70b9599afb1 (patch)
tree7156ad3c99f71fe95243eeeca50b52f65e17c050
parent35d8c39d0e52f5230716f61910881b309e4b1a04 (diff)
parent3f6c515d723480bc8afd456b0a52438fe79128a8 (diff)
downloadlinux-stericsson-e69beeabac6dae8d4318f46c7aa0c70b9599afb1.tar.gz
Merge tag 'mips-fixes_5.12_2' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux
Pull MIPS fix from Thomas Bogendoerfer: "Fix for fdt alignment when image is compressed" * tag 'mips-fixes_5.12_2' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux: MIPS: vmlinux.lds.S: Fix appended dtb not properly aligned
-rw-r--r--arch/mips/kernel/vmlinux.lds.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/vmlinux.lds.S b/arch/mips/kernel/vmlinux.lds.S
index 1234834cc4c44d..1f98947fe715da 100644
--- a/arch/mips/kernel/vmlinux.lds.S
+++ b/arch/mips/kernel/vmlinux.lds.S
@@ -176,7 +176,7 @@ SECTIONS
.fill : {
FILL(0);
BYTE(0);
- . = ALIGN(8);
+ STRUCT_ALIGN();
}
__appended_dtb = .;
/* leave space for appended DTB */