Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756698AbbLQN36 (ORCPT ); Thu, 17 Dec 2015 08:29:58 -0500 Received: from arroyo.ext.ti.com ([192.94.94.40]:35303 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755921AbbLQN21 (ORCPT ); Thu, 17 Dec 2015 08:28:27 -0500 From: Peter Ujfalusi To: , CC: , , , Subject: [PATCH v02 1/6] ARM: DTS: da850: fix edma0 reg space Date: Thu, 17 Dec 2015 15:27:47 +0200 Message-ID: <1450358872-2951-2-git-send-email-peter.ujfalusi@ti.com> X-Mailer: git-send-email 2.6.4 In-Reply-To: <1450358872-2951-1-git-send-email-peter.ujfalusi@ti.com> References: <1450358872-2951-1-git-send-email-peter.ujfalusi@ti.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 942 Lines: 30 The size of the eDMA0 CC register space is 0x8000 and not 0x10000. Signed-off-by: Peter Ujfalusi Tested-by: Sushaanth Srirangapathi --- arch/arm/boot/dts/da850.dtsi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi index 0bd98cd00816..e73f5efb3aa3 100644 --- a/arch/arm/boot/dts/da850.dtsi +++ b/arch/arm/boot/dts/da850.dtsi @@ -152,7 +152,8 @@ }; edma0: edma@01c00000 { compatible = "ti,edma3"; - reg = <0x0 0x10000>; + /* eDMA3 CC0: 0x01c0 0000 - 0x01c0 7fff */ + reg = <0x0 0x8000>; interrupts = <11 13 12>; #dma-cells = <1>; }; -- 2.6.4 -- 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/