[PATCH] USB: add bMaxPacketSize0 attribute to sysfs
For some reason this was not there... Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
7ac3db59fd
commit
cf5910bbae
|
@ -196,6 +196,7 @@ usb_descriptor_attr (bDeviceClass, "%02x\n")
|
|||
usb_descriptor_attr (bDeviceSubClass, "%02x\n")
|
||||
usb_descriptor_attr (bDeviceProtocol, "%02x\n")
|
||||
usb_descriptor_attr (bNumConfigurations, "%d\n")
|
||||
usb_descriptor_attr (bMaxPacketSize0, "%d\n")
|
||||
|
||||
static struct attribute *dev_attrs[] = {
|
||||
/* current configuration's attributes */
|
||||
|
@ -211,6 +212,7 @@ static struct attribute *dev_attrs[] = {
|
|||
&dev_attr_bDeviceSubClass.attr,
|
||||
&dev_attr_bDeviceProtocol.attr,
|
||||
&dev_attr_bNumConfigurations.attr,
|
||||
&dev_attr_bMaxPacketSize0.attr,
|
||||
&dev_attr_speed.attr,
|
||||
&dev_attr_devnum.attr,
|
||||
&dev_attr_version.attr,
|
||||
|
|
Loading…
Reference in New Issue