public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 001/001] leds: alix-leds2 fixed for Award BIOS
@ 2009-05-13 14:10 Tobias Müller
  2009-05-13 22:14 ` Andrew Morton
  0 siblings, 1 reply; 9+ messages in thread
From: Tobias Müller @ 2009-05-13 14:10 UTC (permalink / raw)
  To: linux-kernel; +Cc: Tobias Müller

From: Tobias Mueller <Tobias_Mueller@twam.info>

Added initialisation of GPIO ports for compatibility with boards with Award
BIOS (e.g. ALIX.3D3).
Signed-off-by: Tobias Mueller <Tobias_Mueller@twam.info>
---
diff --git a/drivers/leds/leds-alix2.c b/drivers/leds/leds-alix2.c
index ddbd773..bda9403 100644
--- a/drivers/leds/leds-alix2.c
+++ b/drivers/leds/leds-alix2.c
@@ -14,7 +14,7 @@

 static int force = 0;
 module_param(force, bool, 0444);
-MODULE_PARM_DESC(force, "Assume system has ALIX.2 style LEDs");
+MODULE_PARM_DESC(force, "Assume system has ALIX.2/ALIX.3 style LEDs");

 struct alix_led {
 	struct led_classdev cdev;
@@ -155,6 +155,11 @@ static int __init alix_led_init(void)
 		goto out;
 	}

+	/* enable output on GPIO for LED 1,2,3 */
+	outl(1 << 6, 0x6104);
+	outl(1 << 9, 0x6184);
+	outl(1 << 11, 0x6184);
+
 	pdev = platform_device_register_simple(KBUILD_MODNAME, -1, NULL, 0);
 	if (!IS_ERR(pdev)) {
 		ret = platform_driver_probe(&alix_led_driver, alix_led_probe);

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2009-05-16 15:21 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-13 14:10 [PATCH 001/001] leds: alix-leds2 fixed for Award BIOS Tobias Müller
2009-05-13 22:14 ` Andrew Morton
2009-05-14  9:08   ` Tobias Müller
2009-05-14 20:09     ` Constantin Baranov
2009-05-14 20:23       ` Tobias Müller
2009-05-14 21:32         ` Constantin Baranov
2009-05-16  9:52           ` Tobias Müller
2009-05-16 10:11             ` [PATCH v3 001/001] " Tobias Müller
2009-05-16 15:21             ` Constantin Baranov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox