blob: 8a770e62a8b4e5fb3d01f14e498d8eda99e8a6a4 [file] [log] [blame]
David Herrmannfb51b442011-07-05 13:45:08 +02001/*
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);