diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2005-06-21 00:15:16 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-10-28 19:47:37 -0400 |
commit | 094f1649577dfc7f2c7407a8380e05a506b31f7f (patch) | |
tree | 5775c40d5c05f5427bb36c3c61d0db143c719bdd /include/linux/usb.h | |
parent | 8da608caa07d5c9745ec86bf7c25ad423352f9a4 (diff) |
[PATCH] USB: add endpoint information to sysfs
This patch adds endpoint information for both devices and interfaces to
sysfs. Previously it was only possible to get the endpoint information
from usbfs, and never possible to get any information on endpoint 0.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/core/sysfs.c | 195 ++++++++++++++++++++++++++++++++++++++++++++++-
include/linux/usb.h | 4
2 files changed, 197 insertions(+), 2 deletions(-)
Diffstat (limited to 'include/linux/usb.h')
-rw-r--r-- | include/linux/usb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h index 8f731e8f2821..4512210e97e7 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h | |||
@@ -57,6 +57,10 @@ struct usb_host_endpoint { | |||
57 | struct usb_endpoint_descriptor desc; | 57 | struct usb_endpoint_descriptor desc; |
58 | struct list_head urb_list; | 58 | struct list_head urb_list; |
59 | void *hcpriv; | 59 | void *hcpriv; |
60 | char *attr_name; | ||
61 | struct attribute_group *attr_group; | ||
62 | struct attribute **attrs; | ||
63 | int num_attrs; | ||
60 | 64 | ||
61 | unsigned char *extra; /* Extra descriptors */ | 65 | unsigned char *extra; /* Extra descriptors */ |
62 | int extralen; | 66 | int extralen; |