David Herrmann | fb51b44 | 2011-07-05 13:45:08 +0200 | [diff] [blame^] | 1 | /* |
| 2 | * HID driver for Nintendo Wiimote devices |
| 3 | * Copyright (c) 2011 David Herrmann |
| 4 | */ |
| 5 | |
| 6 | /* |
| 7 | * This program is free software; you can redistribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License as published by the Free |
| 9 | * Software Foundation; either version 2 of the License, or (at your option) |
| 10 | * any later version. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/module.h> |
| 14 | |
| 15 | #define WIIMOTE_VERSION "0.1" |
| 16 | #define WIIMOTE_NAME "Nintendo Wii Remote" |
| 17 | |
| 18 | static int __init wiimote_init(void) |
| 19 | { |
| 20 | return 0; |
| 21 | } |
| 22 | |
| 23 | static void __exit wiimote_exit(void) |
| 24 | { |
| 25 | } |
| 26 | |
| 27 | module_init(wiimote_init); |
| 28 | module_exit(wiimote_exit); |
| 29 | MODULE_LICENSE("GPL"); |
| 30 | MODULE_AUTHOR("David Herrmann <dh.herrmann@gmail.com>"); |
| 31 | MODULE_DESCRIPTION(WIIMOTE_NAME " Device Driver"); |
| 32 | MODULE_VERSION(WIIMOTE_VERSION); |