2 * LED Kernel Default ON Trigger
4 * Copyright 2008 Nick Forbes <nick.forbes@incepta.com>
6 * Based on Richard Purdie's ledtrig-timer.c.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/leds.h>
20 static void defon_trig_activate(struct led_classdev
*led_cdev
)
22 led_set_brightness(led_cdev
, LED_FULL
);
25 static struct led_trigger defon_led_trigger
= {
27 .activate
= defon_trig_activate
,
30 static int __init
defon_trig_init(void)
32 return led_trigger_register(&defon_led_trigger
);
35 static void __exit
defon_trig_exit(void)
37 led_trigger_unregister(&defon_led_trigger
);
40 module_init(defon_trig_init
);
41 module_exit(defon_trig_exit
);
43 MODULE_AUTHOR("Nick Forbes <nick.forbes@incepta.com>");
44 MODULE_DESCRIPTION("Default-ON LED trigger");
45 MODULE_LICENSE("GPL");