Commit deef1244 authored by Matt Porter's avatar Matt Porter Committed by Vinod Koul

of: dma: fix typos in generic dma binding definition

Some semicolons were left out in the examples.

The #dma-channels and #dma-requests properties have a prefix
that is, by convention, reserved for cell size properties.
Rename those properties to dma-channels and dma-requests.
Signed-off-by: default avatarMatt Porter <mporter@ti.com>
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
Acked-by: default avatarJon Hunter <jon-hunter@ti.com>
Signed-off-by: default avatarVinod Koul <vinod.koul@linux.intel.com>
parent 4c26bc60
...@@ -13,22 +13,22 @@ Required property: ...@@ -13,22 +13,22 @@ Required property:
more details. more details.
Optional properties: Optional properties:
- #dma-channels: Number of DMA channels supported by the controller. - dma-channels: Number of DMA channels supported by the controller.
- #dma-requests: Number of DMA requests signals supported by the - dma-requests: Number of DMA requests signals supported by the
controller. controller.
Example: Example:
dma: dma@48000000 { dma: dma@48000000 {
compatible = "ti,omap-sdma" compatible = "ti,omap-sdma";
reg = <0x48000000 0x1000>; reg = <0x48000000 0x1000>;
interrupts = <0 12 0x4 interrupts = <0 12 0x4
0 13 0x4 0 13 0x4
0 14 0x4 0 14 0x4
0 15 0x4>; 0 15 0x4>;
#dma-cells = <1>; #dma-cells = <1>;
#dma-channels = <32>; dma-channels = <32>;
#dma-requests = <127>; dma-requests = <127>;
}; };
...@@ -61,7 +61,7 @@ Examples: ...@@ -61,7 +61,7 @@ Examples:
... ...
dmas = <&dma 2 /* read channel */ dmas = <&dma 2 /* read channel */
&dma 3>; /* write channel */ &dma 3>; /* write channel */
dma-names = "rx", "tx" dma-names = "rx", "tx";
... ...
}; };
...@@ -70,7 +70,7 @@ Examples: ...@@ -70,7 +70,7 @@ Examples:
dmas = <&dma1 5 dmas = <&dma1 5
&dma2 7 &dma2 7
&dma3 2>; &dma3 2>;
dma-names = "rx-tx", "rx-tx", "rx-tx" dma-names = "rx-tx", "rx-tx", "rx-tx";
3. A device with three channels, one of which has two alternatives: 3. A device with three channels, one of which has two alternatives:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment