From patchwork Mon Sep 10 19:45:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Porter X-Patchwork-Id: 1433461 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 AEDFEE00C4 for ; Mon, 10 Sep 2012 19:44:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932294Ab2IJToV (ORCPT ); Mon, 10 Sep 2012 15:44:21 -0400 Received: from mail-ie0-f174.google.com ([209.85.223.174]:40378 "EHLO mail-ie0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932281Ab2IJToM (ORCPT ); Mon, 10 Sep 2012 15:44:12 -0400 Received: by ieje11 with SMTP id e11so3965721iej.19 for ; Mon, 10 Sep 2012 12:44:11 -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=ISAXrCp/p/cUkbk4wunB6Jd2/RHOrDC2HOqp9ahiOGQ=; b=tzi6CnIiupRJe3niZ5ButzQr8sAy1xQog6mQNKBncEMuMVYbhM2oOvjigWnh8oYzQ0 Y2KZi51wRQWqAXUe5I+yBqQUNBCuHzRvwicfaqgOaYGW5xrWcRB6DgVGhBOLY5IdtKC2 WsprE4nkK14WT/19B+lYdTXO4SpI95kFdZhjaNwYGSacJNoeFeWJsODotC9sC+hNGmIN s54C6h2hMjE4XMwpXIYDSJHkEZKerLmlgfEKw6F73XXNQ71NgZgp/hFPL5VCB2Avka0P WTRwYqj9IJBRz4Dvfo0hb5UNp1IaplXp6yxXyvZnAzK4I5Nwy/KFhR3iIApfV/aFalwT ZKww== Received: by 10.50.195.234 with SMTP id ih10mr12889002igc.21.1347306251659; Mon, 10 Sep 2012 12:44:11 -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.09 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 10 Sep 2012 12:44:10 -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 2/2] ARM: dts: AM33XX: adjust leds to use the corrected gpio label Date: Mon, 10 Sep 2012 15:45:12 -0400 Message-Id: <1347306312-31533-3-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 With the am33xx.dtsi now using gpio labels that match the AM33xx documentation, we need to refer to GPIO1 by the "gpio1" label. Signed-off-by: Matt Porter --- arch/arm/boot/dts/am335x-bone.dts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/boot/dts/am335x-bone.dts b/arch/arm/boot/dts/am335x-bone.dts index b0a7409..fa0c9d5 100644 --- a/arch/arm/boot/dts/am335x-bone.dts +++ b/arch/arm/boot/dts/am335x-bone.dts @@ -41,27 +41,27 @@ heartbeat { label = "beaglebone:green:usr0"; - gpios = <&gpio2 21 0>; + gpios = <&gpio1 21 0>; linux,default-trigger = "heartbeat"; default-state = "off"; }; mmc { label = "beaglebone:green:usr1"; - gpios = <&gpio2 22 0>; + gpios = <&gpio1 22 0>; linux,default-trigger = "mmc0"; default-state = "off"; }; led2 { label = "beaglebone:green:usr2"; - gpios = <&gpio2 23 0>; + gpios = <&gpio1 23 0>; default-state = "off"; }; led3 { label = "beaglebone:green:usr3"; - gpios = <&gpio2 24 0>; + gpios = <&gpio1 24 0>; default-state = "off"; }; };