dts: Fix builds of arc EMSK & NSIM SoCs

With the DT_ prefix change we missed adding prefixes in dts_fixup.h
on snps_emsk & snps_nsim for ARC_ICCM_0_BASE_ADDRESS and
ARC_ICCM_0_SIZE.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2018-11-13 17:00:57 -06:00 committed by Anas Nashif
commit 128fef2c09
2 changed files with 4 additions and 4 deletions

View file

@ -4,8 +4,8 @@
#define DT_DCCM_BASE_ADDRESS DT_ARC_DCCM_80000000_BASE_ADDRESS
#define DT_DCCM_SIZE (DT_ARC_DCCM_80000000_SIZE >> 10)
#define DT_ICCM_BASE_ADDRESS ARC_ICCM_0_BASE_ADDRESS
#define DT_ICCM_SIZE (ARC_ICCM_0_SIZE >> 10)
#define DT_ICCM_BASE_ADDRESS DT_ARC_ICCM_0_BASE_ADDRESS
#define DT_ICCM_SIZE (DT_ARC_ICCM_0_SIZE >> 10)
/*
* UART configuration

View file

@ -4,7 +4,7 @@
#define DT_DCCM_BASE_ADDRESS DT_ARC_DCCM_80000000_BASE_ADDRESS
#define DT_DCCM_SIZE (DT_ARC_DCCM_80000000_SIZE >> 10)
#define DT_ICCM_BASE_ADDRESS ARC_ICCM_0_BASE_ADDRESS
#define DT_ICCM_SIZE (ARC_ICCM_0_SIZE >> 10)
#define DT_ICCM_BASE_ADDRESS DT_ARC_ICCM_0_BASE_ADDRESS
#define DT_ICCM_SIZE (DT_ARC_ICCM_0_SIZE >> 10)
/* End of SoC Level DTS fixup file */