fix: rename load address relative offset node name
Replace "relative-address" with "load-address-relative-offset" as the
node name in the memory region node of secure partition manifest.
Change-Id: I34d423ef0ae7e86a5517a2f7e4293eff97aeabf7
Signed-off-by: Davidson K <davidson.kumaresan@arm.com>
diff --git a/src/manifest_test.cc b/src/manifest_test.cc
index c281174..a64d3ab 100644
--- a/src/manifest_test.cc
+++ b/src/manifest_test.cc
@@ -1248,7 +1248,8 @@
MANIFEST_ERROR_MEM_REGION_EMPTY);
manifest_dealloc();
- /* Mutually exclusive base-address and relative-address properties */
+ /* Mutually exclusive base-address and load-address-relative-offset
+ * properties */
/* clang-format off */
dtb = ManifestDtBuilder()
.FfaValidManifest()
@@ -1258,7 +1259,7 @@
.StartChild("rx")
.Description("rx-buffer")
.Property("base-address", "<0x7300000>")
- .Property("relative-address", "<0x7300000>")
+ .Property("load-address-relative-offset", "<0x7300000>")
.Property("pages-count", "<1>")
.Property("attributes", "<1>")
.EndChild()
@@ -1278,7 +1279,7 @@
.Label("rx")
.StartChild("rx")
.Description("rx-buffer")
- .Property("relative-address", "<0xffffff00 0xffffff00>")
+ .Property("load-address-relative-offset", "<0xffffff00 0xffffff00>")
.Property("pages-count", "<1>")
.Property("attributes", "<1>")
.EndChild()
@@ -1712,7 +1713,7 @@
.Compatible({ "arm,ffa-manifest-memory-regions" })
.StartChild("test-memory")
.Description("test-memory")
- .Property("relative-address", "<0x7100000>")
+ .Property("load-address-relative-offset", "<0x7100000>")
.Property("pages-count", "<4>")
.Property("attributes", "<3>")
.Property("smmu-id", "<1>")