-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 54680 b: refs/heads/master c: f038f9a h: refs/heads/master v: v3
- Loading branch information
Andi Kleen
authored and
Linus Torvalds
committed
May 8, 2007
1 parent
d372989
commit 89bc2d4
Showing
4 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 6b9686211374a9751ae70a95fd1fcfb8c2a80698 | ||
refs/heads/master: f038f9a361a764ed013447174b7170073f89cbe9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#include <linux/kernel.h> | ||
#include <linux/module.h> | ||
#include <linux/timer.h> | ||
#include <linux/jiffies.h> | ||
|
||
static void do_blink(unsigned long data); | ||
|
||
static DEFINE_TIMER(blink_timer, do_blink, 0 ,0); | ||
|
||
static void do_blink(unsigned long data) | ||
{ | ||
static long count; | ||
if (panic_blink) | ||
panic_blink(count++); | ||
blink_timer.expires = jiffies + msecs_to_jiffies(1); | ||
add_timer(&blink_timer); | ||
} | ||
|
||
static int blink_init(void) | ||
{ | ||
printk(KERN_INFO "Enabling keyboard blinking\n"); | ||
do_blink(0); | ||
return 0; | ||
} | ||
|
||
module_init(blink_init); | ||
|