]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
exynos: Drop large alignment for SDRAM parameters
authorSimon Glass <sjg@chromium.org>
Wed, 8 Feb 2017 12:43:46 +0000 (05:43 -0700)
committerMinkyu Kang <mk7.kang@samsung.com>
Fri, 10 Feb 2017 09:51:51 +0000 (18:51 +0900)
We don't ever search for these so there is no need for a 4KB alignment.
It just wastes space.

Drop this and use the standard 4-byte alignment.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
board/samsung/common/exynos-uboot-spl.lds

index 4a933c87e9fb2623a5ebe2222d0f994484eba047..8c497792ee9648d9b05fc8ee5379ab1ed69063f0 100644 (file)
@@ -38,8 +38,7 @@ SECTIONS
        } >.sram
        . = ALIGN(4);
 
-       /* Align .machine_param on 256 byte boundary for easier searching */
-       .machine_param ALIGN(0x100) : { *(.machine_param) } >.sram
+       .machine_param : { *(.machine_param) } >.sram
        . = ALIGN(4);
 
        __image_copy_end = .;