sh: Show sleep state with Migo-R LEDs

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Linux Kernel Mailing List
Date: Thursday, March 26, 2009 - 12:22 pm

Gitweb:     http://git.kernel.org/linus/508407149a7f927c4b65a20e0a08a2a94dc769c6
Commit:     508407149a7f927c4b65a20e0a08a2a94dc769c6
Parent:     74aaf024c9a4def24f3eb91a675e4712142d3c87
Author:     Magnus Damm <damm@igel.co.jp>
AuthorDate: Tue Mar 10 06:13:22 2009 +0000
Committer:  Paul Mundt <lethal@linux-sh.org>
CommitDate: Tue Mar 10 15:26:56 2009 +0900

    sh: Show sleep state with Migo-R LEDs
    
    If CONFIG_PM is set, let Migo-R LEDs show sleep states.
    D11 will show STATUS0 and D12 PDSTATUS.
    
    Signed-off-by: Magnus Damm <damm@igel.co.jp>
    Signed-off-by: Paul Mundt <lethal@linux-sh.org>
---
 arch/sh/boards/mach-migor/setup.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/arch/sh/boards/mach-migor/setup.c b/arch/sh/boards/mach-migor/setup.c
index 28e56c5..bc35b4c 100644
--- a/arch/sh/boards/mach-migor/setup.c
+++ b/arch/sh/boards/mach-migor/setup.c
@@ -450,6 +450,14 @@ static struct spi_board_info migor_spi_devices[] = {
 
 static int __init migor_devices_setup(void)
 {
+
+#ifdef CONFIG_PM
+	/* Let D11 LED show STATUS0 */
+	gpio_request(GPIO_FN_STATUS0, NULL);
+
+	/* Lit D12 LED show PDSTATUS */
+	gpio_request(GPIO_FN_PDSTATUS, NULL);
+#else
 	/* Lit D11 LED */
 	gpio_request(GPIO_PTJ7, NULL);
 	gpio_direction_output(GPIO_PTJ7, 1);
@@ -459,6 +467,7 @@ static int __init migor_devices_setup(void)
 	gpio_request(GPIO_PTJ5, NULL);
 	gpio_direction_output(GPIO_PTJ5, 1);
 	gpio_export(GPIO_PTJ5, 0);
+#endif
 
 	/* SMC91C111 - Enable IRQ0, Setup CS4 for 16-bit fast access */
 	gpio_request(GPIO_FN_IRQ0, NULL);
--
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
sh: Show sleep state with Migo-R LEDs, Linux Kernel Mailing ..., (Thu Mar 26, 12:22 pm)