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: Daniel Leung <daniel.leung@intel.com>
This commit is contained in:
Daniel Leung 2018-10-08 11:49:39 -07:00 committed by Anas Nashif
commit 67e238e658

View file

@ -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