aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/tablet/wacom_sys.c
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2012-03-09 13:55:17 -0500
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2012-03-09 13:55:17 -0500
commitb675b3667f6729dcd1036a2a129b35445947f905 (patch)
tree0d58791e9063d3ca2c352da6f3e7df2bdb876f9d /drivers/input/tablet/wacom_sys.c
parent104a5f3cad8f2f27cadbdf0029400ecd9e17ccc0 (diff)
parent192cfd58774b4d17b2fe8bdc77d89c2ef4e0591d (diff)
Merge commit 'v3.3-rc6' into next
Diffstat (limited to 'drivers/input/tablet/wacom_sys.c')
-rw-r--r--drivers/input/tablet/wacom_sys.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/drivers/input/tablet/wacom_sys.c b/drivers/input/tablet/wacom_sys.c
index c9588eececfb..39205eddf713 100644
--- a/drivers/input/tablet/wacom_sys.c
+++ b/drivers/input/tablet/wacom_sys.c
@@ -996,21 +996,4 @@ static struct usb_driver wacom_driver = {
996 .supports_autosuspend = 1, 996 .supports_autosuspend = 1,
997}; 997};
998 998
999static int __init wacom_init(void) 999module_usb_driver(wacom_driver);
1000{
1001 int result;
1002
1003 result = usb_register(&wacom_driver);
1004 if (result == 0)
1005 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
1006 DRIVER_DESC "\n");
1007 return result;
1008}
1009
1010static void __exit wacom_exit(void)
1011{
1012 usb_deregister(&wacom_driver);
1013}
1014
1015module_init(wacom_init);
1016module_exit(wacom_exit);