Update of /cvsroot/linuxconsole/ruby/linux/drivers/usb
In directory usw-pr-cvs1:/tmp/cvs-serv16879
Added Files:
Tag: 1.37
hid-core.c
Log Message:
Moved.
--- NEW FILE: hid-core.c ---
/*
* $Id: hid-core.c,v 1.37 2002/01/22 20:56:42 vojtech Exp $
*
* Copyright (c) 1999 Andreas Gal
* Copyright (c) 2000-2001 Vojtech Pavlik
*
* USB HID support for Linux
*/
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
[...1297 lines suppressed...]
usb_register(&hid_driver);
info(DRIVER_VERSION ":" DRIVER_DESC);
return 0;
}
static void __exit hid_exit(void)
{
#ifdef CONFIG_USB_HIDDEV
hiddev_exit();
#endif
usb_deregister(&hid_driver);
}
module_init(hid_init);
module_exit(hid_exit);
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE(DRIVER_LICENSE);
|