]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
style(linker_script): fix indentation
authorJorge Troncoso <jatron@google.com>
Fri, 21 Oct 2022 04:42:06 +0000 (21:42 -0700)
committerJorge Troncoso <jatron@google.com>
Fri, 21 Oct 2022 04:49:52 +0000 (21:49 -0700)
Use four spaces for indentation to maintain a consistent style. This
attempts to make the linker scripts more friendly for readers.

Signed-off-by: Jorge Troncoso <jatron@google.com>
Change-Id: Iaf26d3c8bd7053fd9605a64ebccdae0792a90b9e

bl1/bl1.ld.S
bl2/bl2.ld.S

index bc23828e496d6dc47bc3f5e4fc7d3b68eec45888..c4ec5fe25b474a2022e32db0ab5fef41c9835fdb 100644 (file)
@@ -38,16 +38,16 @@ SECTIONS
         *(.vectors)
         . = ALIGN(PAGE_SIZE);
         __TEXT_END__ = .;
-     } >ROM
+    } >ROM
 
-     /* .ARM.extab and .ARM.exidx are only added because Clang need them */
-     .ARM.extab . : {
+    /* .ARM.extab and .ARM.exidx are only added because Clang need them */
+    .ARM.extab . : {
         *(.ARM.extab* .gnu.linkonce.armextab.*)
-     } >ROM
+    } >ROM
 
-     .ARM.exidx . : {
+    .ARM.exidx . : {
         *(.ARM.exidx* .gnu.linkonce.armexidx.*)
-     } >ROM
+    } >ROM
 
     .rodata . : {
         __RODATA_START__ = .;
index d332ec069582b59d1e39a4b138093933dbfa82a5..80cf7db9769c0f0ff86c930c2e573eb67b77fe33 100644 (file)
@@ -34,16 +34,16 @@ SECTIONS
         *(.vectors)
         . = ALIGN(PAGE_SIZE);
         __TEXT_END__ = .;
-     } >RAM
+    } >RAM
 
-     /* .ARM.extab and .ARM.exidx are only added because Clang need them */
-     .ARM.extab . : {
+    /* .ARM.extab and .ARM.exidx are only added because Clang need them */
+    .ARM.extab . : {
         *(.ARM.extab* .gnu.linkonce.armextab.*)
-     } >RAM
+    } >RAM
 
-     .ARM.exidx . : {
+    .ARM.exidx . : {
         *(.ARM.exidx* .gnu.linkonce.armexidx.*)
-     } >RAM
+    } >RAM
 
     .rodata . : {
         __RODATA_START__ = .;