@@ -20,7 +20,7 @@ Optional properties:
Example:
dma: dma@48000000 {
- compatible = "ti,omap-sdma"
+ compatible = "ti,omap-sdma";
reg = <0x48000000 0x1000>;
interrupts = <0 12 0x4
0 13 0x4
@@ -61,7 +61,7 @@ Examples:
...
dmas = <&dma 2 /* read channel */
&dma 3>; /* write channel */
- dma-names = "rx", "tx"
+ dma-names = "rx", "tx";
...
};
@@ -70,7 +70,7 @@ Examples:
dmas = <&dma1 5
&dma2 7
&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:
Some semicolons were left out in the examples. Signed-off-by: Matt Porter <mporter@ti.com> --- Documentation/devicetree/bindings/dma/dma.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)