VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Rob Herring <robh@kernel.org> 2021-02-12 19:16:24 -0600 committer: Michal Simek <michal.simek@xilinx.com> 2021-02-16 07:43:36 +0100 commit: 48783be427c70a377c83a17d045eee98c90220da parent: b68c8736a01f5eb21e4c2461f7c3c505e845e6ab
Commit Summary:
microblaze: Fix built-in DTB alignment to be 8-byte aligned
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/arch/microblaze/kernel/vmlinux.lds.S b/arch/microblaze/kernel/vmlinux.lds.S
index df07b3d06cd6..fb31747ec092 100644
--- a/arch/microblaze/kernel/vmlinux.lds.S
+++ b/arch/microblaze/kernel/vmlinux.lds.S
@@ -45,7 +45,7 @@ SECTIONS {
 		_etext = . ;
 	}
 
-	. = ALIGN (4) ;
+	. = ALIGN (8) ;
 	__fdt_blob : AT(ADDR(__fdt_blob) - LOAD_OFFSET) {
 		_fdt_start = . ;		/* place for fdt blob */
 		*(__fdt_blob) ;			/* Any link-placed DTB */