]> xenbits.xensource.com Git - people/sstabellini/xen-unstable.git/.git/commitdiff
s/xen,shared-memory/xen,shared-memory-v1/g
authorStefano Stabellini <sstabellini@xilinx.com>
Wed, 13 Mar 2019 19:33:08 +0000 (12:33 -0700)
committerStefano Stabellini <sstabellini@xilinx.com>
Wed, 18 Dec 2019 19:16:19 +0000 (11:16 -0800)
The shared memory device tree binding went upstream as
"xen,shared-memory-v1". So, rename all occurrences of
"xen,shared-memory" to "xen,shared-memory-v1" in the docs.

Signed-off-by: Stefano Stabellini <stefanos@xilinx.com>
docs/misc/arm/dom0_shared_mem.txt

index 7b10444e061cc407537d21b8f8e7a6ba402bc672..1e2ba67e99cf09e30e520c61ff36a6db55c095ea 100644 (file)
@@ -4,7 +4,7 @@ between dom0 and a domU.
 First, we have to add a reserved-memory node to the host device tree to
 advertise the special memory region to dom0, so that it won't use it to
 allocate memory as any other pages. For that, we can make use of the
-newly introduced "xen,shared-memory" compatible string. For example:
+newly introduced "xen,shared-memory-v1" compatible string. For example:
 
     reserved-memory {
         #address-cells = <0x2>;
@@ -12,7 +12,7 @@ newly introduced "xen,shared-memory" compatible string. For example:
         ranges;
 
         xen-shmem@0 {
-            compatible = "xen,shared-memory";
+            compatible = "xen,shared-memory-v1";
             reg = <0x0 0x70000000 0x0 0x1000>;
         };
     };
@@ -42,7 +42,7 @@ be for example:
             ranges;
 
             xen-shmem@0 {
-                compatible = "xen,shared-memory";
+                compatible = "xen,shared-memory-v1";
                 reg = <0x0 0x70000000 0x0 0x1000>;
             };
         };