From 461fcf4cef4d5c7f009352698372e2d233b99f3f Mon Sep 17 00:00:00 2001 From: Peter Mitsis Date: Wed, 10 Apr 2024 12:01:44 -0400 Subject: [PATCH] linker: drivers: Use Z_LINK_ITERABLE_SUBALIGN Updates the linker script fragments under 'drivers' to use Z_LINK_ITERABLE_SUBALIGN for the subalignment instead of a hardcoded value of 4. Signed-off-by: Peter Mitsis --- drivers/usb/uvb/uvb.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/uvb/uvb.ld b/drivers/usb/uvb/uvb.ld index 424fbf40daa..12f52aceb38 100644 --- a/drivers/usb/uvb/uvb.ld +++ b/drivers/usb/uvb/uvb.ld @@ -1 +1 @@ -ITERABLE_SECTION_RAM(uvb_node, 4) +ITERABLE_SECTION_RAM(uvb_node, Z_LINK_ITERABLE_SUBALIGN)