Commit 67e238e6 authored by Daniel Leung's avatar Daniel Leung Committed by Anas Nashif
Browse files

linker: arm: add missing period for CCM section name



The CCM section name macros are missing the leading period.
Add the period so those items supposed to be in CCM sections
are actually being placed correctly.

Signed-off-by: default avatarDaniel Leung <daniel.leung@intel.com>
parent 3949846e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -53,9 +53,9 @@
#define KINETIS_FLASH_CONFIG  kinetis_flash_config
#define TI_CCFG	.ti_ccfg

#define _CCM_DATA_SECTION_NAME		ccm_data
#define _CCM_BSS_SECTION_NAME		ccm_bss
#define _CCM_NOINIT_SECTION_NAME	ccm_noinit
#define _CCM_DATA_SECTION_NAME		.ccm_data
#define _CCM_BSS_SECTION_NAME		.ccm_bss
#define _CCM_NOINIT_SECTION_NAME	.ccm_noinit

#endif