diff options
| author | Antonio Vázquez Blanco <[email protected]> | 2023-11-29 08:23:11 +0100 |
|---|---|---|
| committer | Antonio Vázquez Blanco <[email protected]> | 2023-11-29 08:23:11 +0100 |
| commit | c12e719808e1193a1e32252e0b000fd6e53f1ebc (patch) | |
| tree | 17d90131e5dd10626d5a50ffb66c78c68b9c3dde | |
| parent | 6849e210c05f68c728e5b2977082aa9c9efd66bc (diff) | |
stm32h750dk: Codespell in linker file
| -rw-r--r-- | hw/bsp/stm32h7/boards/stm32h750bdk/stm32h750xx_flash_CM7.ld | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/hw/bsp/stm32h7/boards/stm32h750bdk/stm32h750xx_flash_CM7.ld b/hw/bsp/stm32h7/boards/stm32h750bdk/stm32h750xx_flash_CM7.ld index 4b64ea1be..19de46fa6 100644 --- a/hw/bsp/stm32h7/boards/stm32h750bdk/stm32h750xx_flash_CM7.ld +++ b/hw/bsp/stm32h7/boards/stm32h750bdk/stm32h750xx_flash_CM7.ld @@ -118,7 +118,7 @@ SECTIONS _sidata = LOADADDR(.data); /* Initialized data sections goes into RAM, load LMA copy after code */ - .data : + .data : { . = ALIGN(4); _sdata = .; /* create a global symbol at data start */ @@ -134,7 +134,7 @@ SECTIONS . = ALIGN(4); .bss : { - /* This is used by the startup in order to initialize the .bss secion */ + /* This is used by the startup in order to initialize the .bss section */ _sbss = .; /* define a global symbol at bss start */ __bss_start__ = _sbss; *(.bss) @@ -169,5 +169,3 @@ SECTIONS .ARM.attributes 0 : { *(.ARM.attributes) } } - - |
