diff options
author | Andi Kleen <ak@novell.com> | 2007-05-08 03:29:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:10 -0400 |
commit | f038f9a361a764ed013447174b7170073f89cbe9 (patch) | |
tree | 63963a1c5e8e0228d601637e9c96ebffd152a942 /drivers/misc/blink.c | |
parent | 6b9686211374a9751ae70a95fd1fcfb8c2a80698 (diff) |
Add keyboard blink driver
Simple driver that blinks the keyboard LEDs when loaded. Useful for
checking that the kernel is still alive or for crashdumping
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/misc/blink.c')
-rw-r--r-- | drivers/misc/blink.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/drivers/misc/blink.c b/drivers/misc/blink.c new file mode 100644 index 000000000000..634431ce1184 --- /dev/null +++ b/drivers/misc/blink.c | |||
@@ -0,0 +1,27 @@ | |||
1 | #include <linux/kernel.h> | ||
2 | #include <linux/module.h> | ||
3 | #include <linux/timer.h> | ||
4 | #include <linux/jiffies.h> | ||
5 | |||
6 | static void do_blink(unsigned long data); | ||
7 | |||
8 | static DEFINE_TIMER(blink_timer, do_blink, 0 ,0); | ||
9 | |||
10 | static void do_blink(unsigned long data) | ||
11 | { | ||
12 | static long count; | ||
13 | if (panic_blink) | ||
14 | panic_blink(count++); | ||
15 | blink_timer.expires = jiffies + msecs_to_jiffies(1); | ||
16 | add_timer(&blink_timer); | ||
17 | } | ||
18 | |||
19 | static int blink_init(void) | ||
20 | { | ||
21 | printk(KERN_INFO "Enabling keyboard blinking\n"); | ||
22 | do_blink(0); | ||
23 | return 0; | ||
24 | } | ||
25 | |||
26 | module_init(blink_init); | ||
27 | |||