linker: subsys: Use Z_LINK_ITERABLE_SUBALIGN
Updates the linker script fragments under 'subsys' to use Z_LINK_ITERABLE_SUBALIGN for the subalignment instead of a hardcoded value of 4. Signed-off-by: Peter Mitsis <peter.mitsis@intel.com>
This commit is contained in:
parent
30625e4c98
commit
02cc127475
|
@ -6,4 +6,4 @@
|
||||||
|
|
||||||
#include <zephyr/linker/iterable_sections.h>
|
#include <zephyr/linker/iterable_sections.h>
|
||||||
|
|
||||||
ITERABLE_SECTION_RAM(conn_mgr_conn_binding, 4)
|
ITERABLE_SECTION_RAM(conn_mgr_conn_binding, Z_LINK_ITERABLE_SUBALIGN)
|
||||||
|
|
|
@ -4,4 +4,4 @@
|
||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ITERABLE_SECTION_RAM(wifi_nm_instance, 4)
|
ITERABLE_SECTION_RAM(wifi_nm_instance, Z_LINK_ITERABLE_SUBALIGN)
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
ITERABLE_SECTION_ROM(lwm2m_init_func, 4)
|
ITERABLE_SECTION_ROM(lwm2m_init_func, Z_LINK_ITERABLE_SUBALIGN)
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#include <zephyr/linker/iterable_sections.h>
|
#include <zephyr/linker/iterable_sections.h>
|
||||||
|
|
||||||
ITERABLE_SECTION_RAM(sip_svc_controller, 4)
|
ITERABLE_SECTION_RAM(sip_svc_controller, Z_LINK_ITERABLE_SUBALIGN)
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#include <zephyr/linker/iterable_sections.h>
|
#include <zephyr/linker/iterable_sections.h>
|
||||||
|
|
||||||
ITERABLE_SECTION_ROM(usbd_msc_lun, 4)
|
ITERABLE_SECTION_ROM(usbd_msc_lun, Z_LINK_ITERABLE_SUBALIGN)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include <zephyr/linker/iterable_sections.h>
|
#include <zephyr/linker/iterable_sections.h>
|
||||||
|
|
||||||
ITERABLE_SECTION_RAM(usbd_contex, 4)
|
ITERABLE_SECTION_RAM(usbd_contex, Z_LINK_ITERABLE_SUBALIGN)
|
||||||
ITERABLE_SECTION_RAM(usbd_class_node, 4)
|
ITERABLE_SECTION_RAM(usbd_class_node, Z_LINK_ITERABLE_SUBALIGN)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include <zephyr/linker/iterable_sections.h>
|
#include <zephyr/linker/iterable_sections.h>
|
||||||
|
|
||||||
ITERABLE_SECTION_RAM(usbh_contex, 4)
|
ITERABLE_SECTION_RAM(usbh_contex, Z_LINK_ITERABLE_SUBALIGN)
|
||||||
ITERABLE_SECTION_RAM(usbh_class_data, 4)
|
ITERABLE_SECTION_RAM(usbh_class_data, Z_LINK_ITERABLE_SUBALIGN)
|
||||||
|
|
Loading…
Reference in a new issue