From patchwork Sat Nov 24 08:29:31 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Javier Martinez Canillas X-Patchwork-Id: 1798171 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id 1549FDF230 for ; Sat, 24 Nov 2012 08:32:24 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TcB7a-0007aQ-37; Sat, 24 Nov 2012 08:29:54 +0000 Received: from bhuna.collabora.co.uk ([93.93.135.160]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TcB7V-0007Zg-Tn for linux-arm-kernel@lists.infradead.org; Sat, 24 Nov 2012 08:29:50 +0000 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: javier) with ESMTPSA id 2DBC416A83FD From: Javier Martinez Canillas To: Enric Balletbo i Serra Subject: [PATCH 1/1] ARM: OMAP3: igep0020: default boot status LED to On instead of Heartbeat Date: Sat, 24 Nov 2012 09:29:31 +0100 Message-Id: <1353745771-29983-1-git-send-email-javier.martinez@collabora.co.uk> X-Mailer: git-send-email 1.7.7.6 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20121124_032950_083729_65F64944 X-CRM114-Status: GOOD ( 10.68 ) X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 0.0 UNPARSEABLE_RELAY Informational: message has unparseable relay lines Cc: Tony Lindgren , linux-omap@vger.kernel.org, Javier Martinez Canillas , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org The IGEPv2 board uses an green GPIO LED to inform the user that the kernel could boot. The green status GPIO LED was default to Heartbeat but On is better to signal that is running correctly. Signed-off-by: Javier Martinez Canillas --- arch/arm/mach-omap2/board-igep0020.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/board-igep0020.c b/arch/arm/mach-omap2/board-igep0020.c index 0f24cb8..e526228 100644 --- a/arch/arm/mach-omap2/board-igep0020.c +++ b/arch/arm/mach-omap2/board-igep0020.c @@ -313,7 +313,7 @@ static struct gpio_led igep_gpio_leds[] = { }, [3] = { .name = "gpio-led:green:d1", - .default_trigger = "heartbeat", + .default_trigger = "default-on", .gpio = -EINVAL, /* gets replaced */ .active_low = 1, },