summaryrefslogtreecommitdiff
path: root/plat/qemu/include
diff options
context:
space:
mode:
authorJens Wiklander <jens.wiklander@linaro.org>2017-08-24 13:16:16 +0200
committerJens Wiklander <jens.wiklander@linaro.org>2017-08-24 15:45:30 +0200
commit56ca7312483e3ddca30a47ce227dc7ffd797914d (patch)
treefce77539f2254ba0336bd43e0b2de7ce184c3341 /plat/qemu/include
parent5982fa7902403b6a9389a2db040f809ea2b7e695 (diff)
qemu: replace deprecated ADDR_SPACE_SIZE
Replaces the deprecated ADDR_SPACE_SIZE with PLAT_PHY_ADDR_SPACE_SIZE and PLAT_VIRT_ADDR_SPACE_SIZE. Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
Diffstat (limited to 'plat/qemu/include')
-rw-r--r--plat/qemu/include/platform_def.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/plat/qemu/include/platform_def.h b/plat/qemu/include/platform_def.h
index ceb0539b..85374e8d 100644
--- a/plat/qemu/include/platform_def.h
+++ b/plat/qemu/include/platform_def.h
@@ -154,7 +154,8 @@
#define NS_IMAGE_OFFSET 0x60000000
-#define ADDR_SPACE_SIZE (1ull << 32)
+#define PLAT_PHY_ADDR_SPACE_SIZE (1ull << 32)
+#define PLAT_VIRT_ADDR_SPACE_SIZE (1ull << 32)
#define MAX_MMAP_REGIONS 8
#define MAX_XLAT_TABLES 6
#define MAX_IO_DEVICES 3