From patchwork Mon Sep 10 19:45:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Porter X-Patchwork-Id: 1433501 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id C5EB7DFFCF for ; Mon, 10 Sep 2012 19:45:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932312Ab2IJTou (ORCPT ); Mon, 10 Sep 2012 15:44:50 -0400 Received: from mail-iy0-f174.google.com ([209.85.210.174]:47150 "EHLO mail-iy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932274Ab2IJToK (ORCPT ); Mon, 10 Sep 2012 15:44:10 -0400 Received: by mail-iy0-f174.google.com with SMTP id k25so2092992iah.19 for ; Mon, 10 Sep 2012 12:44:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=xHyOyHY1Jj1BiYIqECnUgfo3osPG64LGZbhKxaRMAkk=; b=J6KIU3eLcPh85xytgTDNio7VmGyXkjBy+WRlb02+1gbQ9Ejw/xvGkkZZHoGyETbRX2 uQPAa8d9s9jTjz0sH/wVOKXaYNVbGe1/I0uOEu1yrX+so/Va1u+SyzLzBHRU5OBuGhNK RFDAH0Fg+FF0eQQUtvh8p/d1Ju0zSOdBX1NklBA9y/3CycSKbsxso46Tdv2RxJuHvWEm Wg8I/xPG9GyWC5gTYYhO714mKWjQ2JJnsj+Z9XDoB6xbk09WS3yZC8I7MxPvWOrb96yw qgpAhJOHfh9dLjnt3G22PnOoSKfcJ55PexPEf7HN+2bu2bF7SGGzMXvCpi5n/iHvZ8y+ GitQ== Received: by 10.50.94.130 with SMTP id dc2mr13323546igb.22.1347306249638; Mon, 10 Sep 2012 12:44:09 -0700 (PDT) Received: from beef.ohporter.com (cpe-24-166-64-7.neo.res.rr.com. [24.166.64.7]) by mx.google.com with ESMTPS id hz10sm12909129igc.12.2012.09.10.12.44.07 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 10 Sep 2012 12:44:08 -0700 (PDT) From: Matt Porter To: Linux OMAP List Cc: Linux ARM Kernel List , Devicetree Discuss , Linux Kernel Mailing List , Benoit Cousson , Tony Lindgren , Vaibhav Hiremath , AnilKumar Subject: [PATCH v2 1/2] ARM: dts: AM33XX: fix gpio node numbering to match hardware Date: Mon, 10 Sep 2012 15:45:11 -0400 Message-Id: <1347306312-31533-2-git-send-email-mporter@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1347306312-31533-1-git-send-email-mporter@ti.com> References: <1347306312-31533-1-git-send-email-mporter@ti.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org On AM33xx, the datasheet and TRM refer to four GPIO instances that are 0-based, GPIO0-3. Signed-off-by: Matt Porter --- arch/arm/boot/dts/am33xx.dtsi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi index bb31bff..1369bfc 100644 --- a/arch/arm/boot/dts/am33xx.dtsi +++ b/arch/arm/boot/dts/am33xx.dtsi @@ -62,7 +62,7 @@ reg = <0x48200000 0x1000>; }; - gpio1: gpio@44e07000 { + gpio0: gpio@44e07000 { compatible = "ti,omap4-gpio"; ti,hwmods = "gpio1"; gpio-controller; @@ -74,7 +74,7 @@ interrupts = <96>; }; - gpio2: gpio@4804c000 { + gpio1: gpio@4804c000 { compatible = "ti,omap4-gpio"; ti,hwmods = "gpio2"; gpio-controller; @@ -86,7 +86,7 @@ interrupts = <98>; }; - gpio3: gpio@481ac000 { + gpio2: gpio@481ac000 { compatible = "ti,omap4-gpio"; ti,hwmods = "gpio3"; gpio-controller; @@ -98,7 +98,7 @@ interrupts = <32>; }; - gpio4: gpio@481ae000 { + gpio3: gpio@481ae000 { compatible = "ti,omap4-gpio"; ti,hwmods = "gpio4"; gpio-controller;