diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-01-18 18:08:33 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2004-01-18 18:08:33 -0800 |
| commit | c8b674993febf0026c5548047102b6f34b74fdb1 (patch) | |
| tree | 573105e3bed5a9d5f0fb2bd0962c371768cb6cfb | |
| parent | 9b7bd6732143ae2bcf028ba0a5db3f77e6e10c31 (diff) | |
[PATCH] input: missing module licenses
From: Dmitry Torokhov <dtor_core@ameritech.net>
Add missing MODULE_LICENSEs
| -rw-r--r-- | drivers/input/keyboard/maple_keyb.c | 1 | ||||
| -rw-r--r-- | drivers/input/keyboard/newtonkbd.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/drivers/input/keyboard/maple_keyb.c b/drivers/input/keyboard/maple_keyb.c index 9793ba27b644..3c8765eda6d2 100644 --- a/drivers/input/keyboard/maple_keyb.c +++ b/drivers/input/keyboard/maple_keyb.c @@ -14,6 +14,7 @@ MODULE_AUTHOR("YAEGASHI Takeshi <t@keshi.org>"); MODULE_DESCRIPTION("SEGA Dreamcast keyboard driver"); +MODULE_LICENSE("GPL"); static unsigned char dc_kbd_keycode[256] = { 0, 0, 0, 0, 30, 48, 46, 32, 18, 33, 34, 35, 23, 36, 37, 38, diff --git a/drivers/input/keyboard/newtonkbd.c b/drivers/input/keyboard/newtonkbd.c index ce678198b9fb..dc47acb0a4f7 100644 --- a/drivers/input/keyboard/newtonkbd.c +++ b/drivers/input/keyboard/newtonkbd.c @@ -33,6 +33,8 @@ #include <linux/serio.h> MODULE_AUTHOR("Justin Cormack <j.cormack@doc.ic.ac.uk>"); +MODULE_DESCRIPTION("Newton keyboard driver"); +MODULE_LICENSE("GPL"); #define NKBD_KEY 0x7f #define NKBD_PRESS 0x80 |
