diff options
author | Emil Medve <Emilian.Medve@freescale.com> | 2014-12-08 05:29:16 -0500 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2015-01-29 23:57:44 -0500 |
commit | 1ee9df499b270f259adc8df9cca396d5ef6e9e46 (patch) | |
tree | 4132cf9799ab210bac1e035bed69c8ae111b3b0a | |
parent | c3e09b3a90850b299aa805c32945163e5101ddcd (diff) |
dt/bindings: b/qman: Fix the alloc-ranges in the example(s)
'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>
-rw-r--r-- | Documentation/devicetree/bindings/soc/fsl/bman.txt | 2 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/soc/fsl/qman.txt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/devicetree/bindings/soc/fsl/bman.txt b/Documentation/devicetree/bindings/soc/fsl/bman.txt index 9f80bf8709ac..ee03ef2e265c 100644 --- a/Documentation/devicetree/bindings/soc/fsl/bman.txt +++ b/Documentation/devicetree/bindings/soc/fsl/bman.txt | |||
@@ -96,7 +96,7 @@ The example below shows a BMan FBPR dynamic allocation memory node | |||
96 | 96 | ||
97 | bman_fbpr: bman-fbpr { | 97 | bman_fbpr: bman-fbpr { |
98 | compatible = "fsl,bman-fbpr"; | 98 | compatible = "fsl,bman-fbpr"; |
99 | alloc-ranges = <0 0 0xf 0xffffffff>; | 99 | alloc-ranges = <0 0 0x10 0>; |
100 | size = <0 0x1000000>; | 100 | size = <0 0x1000000>; |
101 | alignment = <0 0x1000000>; | 101 | alignment = <0 0x1000000>; |
102 | }; | 102 | }; |
diff --git a/Documentation/devicetree/bindings/soc/fsl/qman.txt b/Documentation/devicetree/bindings/soc/fsl/qman.txt index 063e3a0b9d04..f3da91ef4287 100644 --- a/Documentation/devicetree/bindings/soc/fsl/qman.txt +++ b/Documentation/devicetree/bindings/soc/fsl/qman.txt | |||
@@ -113,13 +113,13 @@ The example below shows a QMan FQD and a PFDR dynamic allocation memory nodes | |||
113 | 113 | ||
114 | qman_fqd: qman-fqd { | 114 | qman_fqd: qman-fqd { |
115 | compatible = "fsl,qman-fqd"; | 115 | compatible = "fsl,qman-fqd"; |
116 | alloc-ranges = <0 0 0xf 0xffffffff>; | 116 | alloc-ranges = <0 0 0x10 0>; |
117 | size = <0 0x400000>; | 117 | size = <0 0x400000>; |
118 | alignment = <0 0x400000>; | 118 | alignment = <0 0x400000>; |
119 | }; | 119 | }; |
120 | qman_pfdr: qman-pfdr { | 120 | qman_pfdr: qman-pfdr { |
121 | compatible = "fsl,qman-pfdr"; | 121 | compatible = "fsl,qman-pfdr"; |
122 | alloc-ranges = <0 0 0xf 0xffffffff>; | 122 | alloc-ranges = <0 0 0x10 0>; |
123 | size = <0 0x2000000>; | 123 | size = <0 0x2000000>; |
124 | alignment = <0 0x2000000>; | 124 | alignment = <0 0x2000000>; |
125 | }; | 125 | }; |