@@ -20,7 +20,7 @@ Required properties:
Optional properties:
- interrupt-parent: Should be the phandle for the interrupt controller
that services interrupts for this device
-- is_private: The device channels should be marked as private and not for by the
+- is-private: The device channels should be marked as private and not for by the
general purpose DMA channel allocator. False if not passed.
Example:
@@ -58,6 +58,6 @@ Example:
interrupts = <0 35 0x4>;
status = "disabled";
dmas = <&dmahost 12 0 1>,
- <&dmahost 13 0 1 0>;
+ <&dmahost 13 0 1>;
dma-names = "rx", "rx";
};
@@ -1592,7 +1592,7 @@ dw_dma_parse_dt(struct platform_device *pdev)
if (of_property_read_u32(np, "dma-channels", &pdata->nr_channels))
return NULL;
- if (of_property_read_bool(np, "is_private"))
+ if (of_property_read_bool(np, "is-private"))
pdata->is_private = true;
if (!of_property_read_u32(np, "chan_allocation_order", &tmp))
In Device Tree '-' is always preferred over '_'. This is corrected in code as well as in the documentation. Also, there are one too many populated cells in the dmas example. Let's remove one of them to aid with clarity. Signed-off-by: Lee Jones <lee.jones@linaro.org> --- Documentation/devicetree/bindings/dma/snps-dma.txt | 4 ++-- drivers/dma/dw_dmac.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)