diff options
Diffstat (limited to 'include/linux/usb.h')
-rw-r--r-- | include/linux/usb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h index b4ccce6d0982..e22f4b386605 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h | |||
@@ -102,6 +102,7 @@ enum usb_interface_condition { | |||
102 | * number from the USB core by calling usb_register_dev(). | 102 | * number from the USB core by calling usb_register_dev(). |
103 | * @condition: binding state of the interface: not bound, binding | 103 | * @condition: binding state of the interface: not bound, binding |
104 | * (in probe()), bound to a driver, or unbinding (in disconnect()) | 104 | * (in probe()), bound to a driver, or unbinding (in disconnect()) |
105 | * @is_active: flag set when the interface is bound and not suspended. | ||
105 | * @dev: driver model's view of this device | 106 | * @dev: driver model's view of this device |
106 | * @class_dev: driver model's class view of this device. | 107 | * @class_dev: driver model's class view of this device. |
107 | * | 108 | * |
@@ -142,6 +143,8 @@ struct usb_interface { | |||
142 | int minor; /* minor number this interface is | 143 | int minor; /* minor number this interface is |
143 | * bound to */ | 144 | * bound to */ |
144 | enum usb_interface_condition condition; /* state of binding */ | 145 | enum usb_interface_condition condition; /* state of binding */ |
146 | unsigned is_active:1; /* the interface is not suspended */ | ||
147 | |||
145 | struct device dev; /* interface specific device info */ | 148 | struct device dev; /* interface specific device info */ |
146 | struct class_device *class_dev; | 149 | struct class_device *class_dev; |
147 | }; | 150 | }; |