aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/usb.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/usb.h')
-rw-r--r--include/linux/usb.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h
index 4512210e97e7..04502e183dd1 100644
--- a/include/linux/usb.h
+++ b/include/linux/usb.h
@@ -576,10 +576,8 @@ extern struct bus_type usb_bus_type;
576 576
577/** 577/**
578 * struct usb_class_driver - identifies a USB driver that wants to use the USB major number 578 * struct usb_class_driver - identifies a USB driver that wants to use the USB major number
579 * @name: devfs name for this driver. Will also be used by the driver 579 * @name: the usb class device name for this driver. Will show up in sysfs.
580 * class code to create a usb class device.
581 * @fops: pointer to the struct file_operations of this driver. 580 * @fops: pointer to the struct file_operations of this driver.
582 * @mode: the mode for the devfs file to be created for this driver.
583 * @minor_base: the start of the minor range for this driver. 581 * @minor_base: the start of the minor range for this driver.
584 * 582 *
585 * This structure is used for the usb_register_dev() and 583 * This structure is used for the usb_register_dev() and
@@ -589,8 +587,7 @@ extern struct bus_type usb_bus_type;
589struct usb_class_driver { 587struct usb_class_driver {
590 char *name; 588 char *name;
591 struct file_operations *fops; 589 struct file_operations *fops;
592 mode_t mode; 590 int minor_base;
593 int minor_base;
594}; 591};
595 592
596/* 593/*