From f943ae1156772162bf605e334ac200c8a1c78938 Mon Sep 17 00:00:00 2001 From: Carlo Caione Date: Fri, 24 Jun 2022 09:36:09 +0200 Subject: [PATCH] arch: Use a more sane ALIGN value By default ARCH_IRQ_VECTOR_TABLE_ALIGN and ARCH_SW_ISR_TABLE_ALIGN are set to 0. Use a more proper value. Signed-off-by: Carlo Caione --- arch/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/Kconfig b/arch/Kconfig index 62d50f62bd3..b21206a9b57 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -410,7 +410,7 @@ config GEN_IRQ_VECTOR_TABLE config ARCH_IRQ_VECTOR_TABLE_ALIGN int "Alignment size of the interrupt vector table" - default 0 + default 4 depends on GEN_IRQ_VECTOR_TABLE help This option controls alignment size of generated @@ -430,7 +430,7 @@ config GEN_SW_ISR_TABLE config ARCH_SW_ISR_TABLE_ALIGN int "Alignment size of a software ISR table" - default 0 + default 4 depends on GEN_SW_ISR_TABLE help This option controls alignment size of generated