dt/bindings: b/qman: Fix the alloc-ranges in the example(s)
authorEmil Medve <Emilian.Medve@freescale.com>
Mon, 8 Dec 2014 10:29:16 +0000 (04:29 -0600)
committerScott Wood <scottwood@freescale.com>
Fri, 30 Jan 2015 04:57:44 +0000 (22:57 -0600)
'ranges' are specified as <base size> not as <start end>

Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
Documentation/devicetree/bindings/soc/fsl/bman.txt
Documentation/devicetree/bindings/soc/fsl/qman.txt

index 9f80bf8709acecc3ef62ec3b72ca4178c730e45b..ee03ef2e265c2ee7f6642c330647241fced7d475 100644 (file)
@@ -96,7 +96,7 @@ The example below shows a BMan FBPR dynamic allocation memory node
 
                bman_fbpr: bman-fbpr {
                        compatible = "fsl,bman-fbpr";
-                       alloc-ranges = <0 0 0xf 0xffffffff>;
+                       alloc-ranges = <0 0 0x10 0>;
                        size = <0 0x1000000>;
                        alignment = <0 0x1000000>;
                };
index 063e3a0b9d045e988083f65359153337841a0f01..f3da91ef4287a7d57630fa59ced433bfbf6f9b84 100644 (file)
@@ -113,13 +113,13 @@ The example below shows a QMan FQD and a PFDR dynamic allocation memory nodes
 
                qman_fqd: qman-fqd {
                        compatible = "fsl,qman-fqd";
-                       alloc-ranges = <0 0 0xf 0xffffffff>;
+                       alloc-ranges = <0 0 0x10 0>;
                        size = <0 0x400000>;
                        alignment = <0 0x400000>;
                };
                qman_pfdr: qman-pfdr {
                        compatible = "fsl,qman-pfdr";
-                       alloc-ranges = <0 0 0xf 0xffffffff>;
+                       alloc-ranges = <0 0 0x10 0>;
                        size = <0 0x2000000>;
                        alignment = <0 0x2000000>;
                };