Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752093AbbHUQdO (ORCPT ); Fri, 21 Aug 2015 12:33:14 -0400 Received: from mail-pd0-f178.google.com ([209.85.192.178]:35033 "EHLO mail-pd0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751337AbbHUQdM (ORCPT ); Fri, 21 Aug 2015 12:33:12 -0400 From: Moritz Fischer To: michal.simek@xilinx.com Cc: robh+dt@kernel.org, pawel.moll@arm.com, mark.rutland@arm.com, ijc+devicetree@hellion.org.uk, galak@codeaurora.org, soren.brinkmann@xilinx.com, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Moritz Fischer Subject: [PATCH] doc: dt: Add interrupt parent to Xilinx AXI DMA instantation example. Date: Fri, 21 Aug 2015 09:32:55 -0700 Message-Id: <1440174775-14470-1-git-send-email-moritz.fischer@ettus.com> X-Mailer: git-send-email 2.4.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1590 Lines: 42 This patch adds 'interrupt-parent' properties to the instantation example in the docs for the devicetree bindings of the Xilinx AXI DMA driver. Signed-off-by: Moritz Fischer --- Documentation/devicetree/bindings/dma/xilinx/xilinx_dma.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/devicetree/bindings/dma/xilinx/xilinx_dma.txt b/Documentation/devicetree/bindings/dma/xilinx/xilinx_dma.txt index 2291c40..7c956e9 100644 --- a/Documentation/devicetree/bindings/dma/xilinx/xilinx_dma.txt +++ b/Documentation/devicetree/bindings/dma/xilinx/xilinx_dma.txt @@ -19,6 +19,7 @@ Required child node properties: - compatible: It should be either "xlnx,axi-dma-mm2s-channel" or "xlnx,axi-dma-s2mm-channel". - interrupts: Should contain per channel DMA interrupts. +- interrupt-parent: Should contain interrupt parent. - xlnx,datawidth: Should contain the stream data width, take values {32,64...1024}. @@ -36,11 +37,13 @@ axi_dma_0: axidma@40400000 { dma-channel@40400000 { compatible = "xlnx,axi-dma-mm2s-channel"; interrupts = < 0 59 4 >; + interrupt-parent = <&intc>; xlnx,datawidth = <0x40>; } ; dma-channel@40400030 { compatible = "xlnx,axi-dma-s2mm-channel"; interrupts = < 0 58 4 >; + interrupt-parent = <&intc>; xlnx,datawidth = <0x40>; } ; } ; -- 2.4.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/