From e60e74bd26ca009f005541b93baeb55e465e9d5f Mon Sep 17 00:00:00 2001 From: Antonio Nino Diaz Date: Tue, 13 Dec 2016 13:48:31 +0000 Subject: [PATCH] ARM platforms: Replace address space size defines The now deprecated ADDR_SPACE_SIZE has been replaced by the two defines PLAT_PHY_ADDR_SPACE_SIZE and PLAT_VIRT_ADDR_SPACE_SIZE. Change-Id: I027a2f02f47ab2f679b8979a6dbfb0f08270a1a4 Signed-off-by: Antonio Nino Diaz --- include/plat/arm/common/arm_def.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/plat/arm/common/arm_def.h b/include/plat/arm/common/arm_def.h index 4a4dfd40b..6d7bcd1e3 100644 --- a/include/plat/arm/common/arm_def.h +++ b/include/plat/arm/common/arm_def.h @@ -205,7 +205,8 @@ * Required platform porting definitions common to all ARM standard platforms *****************************************************************************/ -#define ADDR_SPACE_SIZE (1ull << 32) +#define PLAT_PHY_ADDR_SPACE_SIZE (1ull << 32) +#define PLAT_VIRT_ADDR_SPACE_SIZE (1ull << 32) /* * This macro defines the deepest retention state possible. A higher state -- GitLab