summaryrefslogtreecommitdiff
path: root/include/linux/usb.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2005-11-21 22:53:03 (GMT)
committerGreg Kroah-Hartman <gregkh@suse.de>2006-01-04 21:48:32 (GMT)
commit2143acc6dc79bdbff812f02a7dc5ab9d4fc81fc8 (patch)
tree523c2d57e412766bfc37b9ff6c22ff01108c92a5 /include/linux/usb.h
parentba9dc657af86d05d2971633e57d1f6f94ed60472 (diff)
downloadlinux-fsl-qoriq-2143acc6dc79bdbff812f02a7dc5ab9d4fc81fc8.tar.xz
[PATCH] USB: make registering a usb driver automatically set the module owner
This fixes the driver that forgot to set the module owner up. Now we can remove the unneeded pointer from the usb driver structure. The idea for how to do this was from Al Viro, who did this for the PCI drivers. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/usb.h')
-rw-r--r--include/linux/usb.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h
index 8d58299..3d05c63 100644
--- a/include/linux/usb.h
+++ b/include/linux/usb.h
@@ -625,7 +625,11 @@ struct usb_class_driver {
* use these in module_init()/module_exit()
* and don't forget MODULE_DEVICE_TABLE(usb, ...)
*/
-extern int usb_register(struct usb_driver *);
+int usb_register_driver(struct usb_driver *, struct module *);
+static inline int usb_register(struct usb_driver *driver)
+{
+ return usb_register_driver(driver, THIS_MODULE);
+}
extern void usb_deregister(struct usb_driver *);
extern int usb_register_dev(struct usb_interface *intf,