stm32h750dk: Codespell in linker file

This commit is contained in:
Antonio Vázquez Blanco 2023-11-29 08:23:11 +01:00
parent 6849e210c0
commit c12e719808
1 changed files with 2 additions and 4 deletions

View File

@ -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) }
}