]>
Commit | Line | Data |
---|---|---|
1 | #include <linux/module.h> | |
2 | ||
3 | static int __init debounce_init(void) | |
4 | { | |
5 | printk(KERN_INFO "Hello Milestone2!\n"); | |
6 | return 0; | |
7 | } | |
8 | ||
9 | static void __exit debounce_exit(void) | |
10 | { | |
11 | } | |
12 | ||
13 | module_init(debounce_init); | |
14 | module_exit(debounce_exit); | |
15 | ||
16 | MODULE_LICENSE("GPL"); | |
17 | MODULE_AUTHOR("Michael Gernoth <michael@gernoth.net>"); |