aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid/hid-wiimote.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hid/hid-wiimote.c')
-rw-r--r--drivers/hid/hid-wiimote.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/drivers/hid/hid-wiimote.c b/drivers/hid/hid-wiimote.c
new file mode 100644
index 000000000000..8a770e62a8b4
--- /dev/null
+++ b/drivers/hid/hid-wiimote.c
@@ -0,0 +1,32 @@
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
18static int __init wiimote_init(void)
19{
20 return 0;
21}
22
23static void __exit wiimote_exit(void)
24{
25}
26
27module_init(wiimote_init);
28module_exit(wiimote_exit);
29MODULE_LICENSE("GPL");
30MODULE_AUTHOR("David Herrmann <dh.herrmann@gmail.com>");
31MODULE_DESCRIPTION(WIIMOTE_NAME " Device Driver");
32MODULE_VERSION(WIIMOTE_VERSION);