Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1ee9df49 authored by Emil Medve's avatar Emil Medve Committed by Scott Wood
Browse files

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: default avatarEmil Medve <Emilian.Medve@Freescale.com>
Signed-off-by: default avatarScott Wood <scottwood@freescale.com>
parent c3e09b3a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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>;
		};
+2 −2
Original line number Diff line number Diff line
@@ -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>;
		};