usbcore: add usb_device_driver definition
This patch (as732) adds a usb_device_driver structure, for representing drivers that manage an entire USB device as opposed to just an interface. Support routines like usb_register_device_driver, usb_deregister_device_driver, usb_probe_device, and usb_unbind_device are also added. Unlike an earlier version of this patch, the new code is type-safe. To accomplish this, the existing struct driver embedded in struct usb_driver had to be wrapped in an intermediate wrapper. This enables the core to tell at runtime whether a particular struct driver belongs to a device driver or to an interface driver. Signed-off-by:Alan Stern <stern@rowland.harvard.edu> Signed-off-by:
Greg Kroah-Hartman <gregkh@suse.de>
Showing
- drivers/usb/core/driver.c 163 additions, 56 deletionsdrivers/usb/core/driver.c
- drivers/usb/core/generic.c 4 additions, 13 deletionsdrivers/usb/core/generic.c
- drivers/usb/core/usb.c 9 additions, 6 deletionsdrivers/usb/core/usb.c
- drivers/usb/core/usb.h 18 additions, 2 deletionsdrivers/usb/core/usb.h
- include/linux/usb.h 51 additions, 7 deletionsinclude/linux/usb.h
Loading
Please register or sign in to comment