[PATCH] leds-wrap: Use default-on trigger for power led

From: Sven Wegener
Date: Fri Aug 01 2008 - 17:04:18 EST


The power led is normally lit after boot, let's use the default-on trigger as
the default trigger for it. This gets the initial brightness value right and
being on is the default behaviour we expect for a power led.

Signed-off-by: Sven Wegener <sven.wegener@xxxxxxxxxxx>
---
drivers/leds/leds-wrap.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)

The patch is based on your current (024e8ac) leds git tree head.

diff --git a/drivers/leds/leds-wrap.c b/drivers/leds/leds-wrap.c
index 7ac61a7..2f3aa87 100644
--- a/drivers/leds/leds-wrap.c
+++ b/drivers/leds/leds-wrap.c
@@ -53,8 +53,9 @@ static void wrap_extra_led_set(struct led_classdev *led_cdev,
}

static struct led_classdev wrap_power_led = {
- .name = "wrap::power",
- .brightness_set = wrap_power_led_set,
+ .name = "wrap::power",
+ .brightness_set = wrap_power_led_set,
+ .default_trigger = "default-on",
};

static struct led_classdev wrap_error_led = {
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/