Skip to content

Commit

Permalink
[DNM] arm: linker: workaround for #58080
Browse files Browse the repository at this point in the history
Padding section alignment for 64bit-aligned timeout struct.

Signed-off-by: Florian Grandel <[email protected]>
  • Loading branch information
fgrandel committed Oct 20, 2023
1 parent 86d8ab7 commit f17fe53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/zephyr/arch/arm/cortex_m/scripts/linker.ld
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ SECTIONS
SECTION_PROLOGUE(padding_section,,)
{
__rodata_region_end = .;
MPU_ALIGN(__rodata_region_end - ADDR(rom_start));
. = ALIGN(8);
} GROUP_LINK_IN(ROMABLE_REGION)
#else
__rodata_region_end = .;
Expand Down

0 comments on commit f17fe53

Please sign in to comment.