The Linux-USB Host Side API | ||
---|---|---|
<<< Previous | Next >>> |
struct usb_class_driver { char * name; struct file_operations * fops; mode_t mode; int minor_base; }; |
devfs name for this driver. Will also be used by the driver class code to create a usb class device.
pointer to the struct file_operations of this driver.
the mode for the devfs file to be created for this driver.
the start of the minor range for this driver.
This structure is used for the usb_register_dev and usb_unregister_dev functions, to consolidate a number of the parameters used for them.
<<< Previous | Home | Next >>> |
struct usb_driver | Up | struct urb |