diff mbox series

dt-bindings: dma-controller: Split interrupt fields in example

Message ID 20220106182518.1435497-2-robh@kernel.org (mailing list archive)
State Accepted
Commit bbd0ff07ed12fda9dbd0cc5f239bb678a775833a
Headers show
Series dt-bindings: dma-controller: Split interrupt fields in example | expand

Commit Message

Rob Herring Jan. 6, 2022, 6:25 p.m. UTC
Best practice for multi-cell property values is to bracket each multi-cell
value.

Signed-off-by: Rob Herring <robh@kernel.org>
---
 Documentation/devicetree/bindings/dma/dma-controller.yaml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Vinod Koul Jan. 8, 2022, 5:27 p.m. UTC | #1
On 06-01-22, 12:25, Rob Herring wrote:
> Best practice for multi-cell property values is to bracket each multi-cell
> value.

Applied, thanks
diff mbox series

Patch

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>;