Commit 5919bd98 authored by Pieter De Gendt's avatar Pieter De Gendt Committed by Alberto Escolar
Browse files

include: linker: common-rom-logging: Fix log_strings section subalign



Commit 89679cd9 replaced hard-coded alignment with a define,
but a regression was introduced with a missing SUBALIGN.

Signed-off-by: default avatarPieter De Gendt <pieter.degendt@basalte.be>
parent 45205f86
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
#include <zephyr/linker/iterable_sections.h>

#if defined(CONFIG_LOG_FMT_SECTION_STRIP) && defined(DEVNULL_REGION)
	SECTION_PROLOGUE(log_strings,(COPY),Z_LINK_ITERABLE_SUBALIGN)
	SECTION_PROLOGUE(log_strings,(COPY),SUBALIGN(Z_LINK_ITERABLE_SUBALIGN))
	{
		Z_LINK_ITERABLE(log_strings);
	} GROUP_ROM_LINK_IN(DEVNULL_REGION, DEVNULL_REGION)