aboutsummaryrefslogtreecommitdiff
path: root/plat/hisilicon/poplar/include
diff options
context:
space:
mode:
authorDavid Cunado <david.cunado@arm.com>2018-02-16 21:12:58 +0000
committerDavid Cunado <david.cunado@arm.com>2018-02-27 17:05:51 +0000
commit5724481fdda01067d3bf4386a3dd07a541d16044 (patch)
treed9261376986d6cc968c9daf8c38e9f9a46cc0103 /plat/hisilicon/poplar/include
parent322a98b6322f1b566a5c4ec65fe481dc204b3eb0 (diff)
downloadtrusted-firmware-a-5724481fdda01067d3bf4386a3dd07a541d16044.tar.gz
Update ULL() macro and instances of ull to comply with MISRA
MISRA C-2012 Rule 7.3 violation: lowercase l shall not be used as literal suffixes. This patch resolves this for the ULL() macro by using ULL suffix instead of the ull suffix. Change-Id: Ia8183c399e74677e676956e8653e82375d0e0a01 Signed-off-by: David Cunado <david.cunado@arm.com>
Diffstat (limited to 'plat/hisilicon/poplar/include')
-rw-r--r--plat/hisilicon/poplar/include/platform_def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plat/hisilicon/poplar/include/platform_def.h b/plat/hisilicon/poplar/include/platform_def.h
index 805c152ada..8e8f009dd6 100644
--- a/plat/hisilicon/poplar/include/platform_def.h
+++ b/plat/hisilicon/poplar/include/platform_def.h
@@ -122,7 +122,7 @@
#define PLAT_POPLAR_NS_IMAGE_OFFSET 0x37000000
/* Page table and MMU setup constants */
-#define ADDR_SPACE_SIZE (1ull << 32)
+#define ADDR_SPACE_SIZE (1ULL << 32)
#define MAX_XLAT_TABLES (4)
#define MAX_MMAP_REGIONS (16)