Skip to content

Commit 52a4bac

Browse files
committed
bsp:ls2k:uniform coding style, use space for indentation
use space instead of table for indentation in ls2k_ram.lds
1 parent febc124 commit 52a4bac

File tree

1 file changed

+14
-16
lines changed

1 file changed

+14
-16
lines changed

bsp/ls2kdev/ls2k_ram.lds

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -79,23 +79,21 @@ SECTIONS
7979
}
8080

8181
. = ALIGN(4);
82-
.ctors :
83-
{
84-
PROVIDE(__ctors_start__ = .);
85-
KEEP(*(SORT(.ctors.*)))
86-
KEEP(*(.ctors))
87-
PROVIDE(__ctors_end__ = .);
88-
}
89-
90-
.dtors :
91-
{
92-
PROVIDE(__dtors_start__ = .);
93-
KEEP(*(SORT(.dtors.*)))
94-
KEEP(*(.dtors))
95-
PROVIDE(__dtors_end__ = .);
96-
}
97-
82+
.ctors :
83+
{
84+
PROVIDE(__ctors_start__ = .);
85+
KEEP(*(SORT(.ctors.*)))
86+
KEEP(*(.ctors))
87+
PROVIDE(__ctors_end__ = .);
88+
}
9889

90+
.dtors :
91+
{
92+
PROVIDE(__dtors_start__ = .);
93+
KEEP(*(SORT(.dtors.*)))
94+
KEEP(*(.dtors))
95+
PROVIDE(__dtors_end__ = .);
96+
}
9997

10098
.stack :
10199
{

0 commit comments

Comments
 (0)