diff options
author | Rob Herring <robh@kernel.org> | 2022-01-06 12:25:10 -0600 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2022-01-08 22:57:15 +0530 |
commit | bbd0ff07ed12fda9dbd0cc5f239bb678a775833a (patch) | |
tree | 0f5c46abba1b84aa189a4623c295e5919984b1b7 /Documentation/devicetree | |
parent | 64aa8f4b6df107f46b6ac3e5331819824626b0af (diff) | |
download | linux-stable-bbd0ff07ed12fda9dbd0cc5f239bb678a775833a.tar.gz linux-stable-bbd0ff07ed12fda9dbd0cc5f239bb678a775833a.tar.bz2 linux-stable-bbd0ff07ed12fda9dbd0cc5f239bb678a775833a.zip |
dt-bindings: dma-controller: Split interrupt fields in example
Best practice for multi-cell property values is to bracket each multi-cell
value.
Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20220106182518.1435497-2-robh@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/dma/dma-controller.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/devicetree/bindings/dma/dma-controller.yaml b/Documentation/devicetree/bindings/dma/dma-controller.yaml index 0043b91da95e..6d3727267fa8 100644 --- a/Documentation/devicetree/bindings/dma/dma-controller.yaml +++ b/Documentation/devicetree/bindings/dma/dma-controller.yaml @@ -24,10 +24,10 @@ examples: dma: dma-controller@48000000 { compatible = "ti,omap-sdma"; reg = <0x48000000 0x1000>; - interrupts = <0 12 0x4 - 0 13 0x4 - 0 14 0x4 - 0 15 0x4>; + interrupts = <0 12 0x4>, + <0 13 0x4>, + <0 14 0x4>, + <0 15 0x4>; #dma-cells = <1>; dma-channels = <32>; dma-requests = <127>; |