aboutsummaryrefslogtreecommitdiff
path: root/linker/linker_script.ld
diff options
context:
space:
mode:
Diffstat (limited to 'linker/linker_script.ld')
-rw-r--r--linker/linker_script.ld3
1 files changed, 1 insertions, 2 deletions
diff --git a/linker/linker_script.ld b/linker/linker_script.ld
index 83dcca0..0338591 100644
--- a/linker/linker_script.ld
+++ b/linker/linker_script.ld
@@ -14,8 +14,7 @@ SECTIONS
*(.text); /* All .text sections go here. */
} >flash
- .data : {
- . = ALIGN(0x04);
+ .data : ALIGN(0x04) {
/* Data segment as defined in the flash. */
INIT_DATA_VALUES = LOADADDR(.data);