Changes in uspace/drv/bus/usb/usbhub/usbhub.h [58563585:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/usbhub.h
r58563585 r9d58539 27 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 28 */ 29 30 29 /** @addtogroup drvusbhub 31 30 * @{ … … 34 33 * @brief Hub driver. 35 34 */ 36 37 35 #ifndef DRV_USBHUB_USBHUB_H 38 36 #define DRV_USBHUB_USBHUB_H … … 41 39 #include <ddf/driver.h> 42 40 41 #include <usb/dev/hub.h> 43 42 #include <usb/classes/hub.h> 44 43 … … 82 81 }; 83 82 84 extern const usb_endpoint_description_t hub_status_change_endpoint_description; 83 int usb_hub_device_add(usb_device_t *usb_dev); 84 int usb_hub_device_remove(usb_device_t *usb_dev); 85 int usb_hub_device_gone(usb_device_t *usb_dev); 85 86 86 extern int usb_hub_device_add(usb_device_t *); 87 extern int usb_hub_device_remove(usb_device_t *); 88 extern int usb_hub_device_gone(usb_device_t *); 89 90 extern bool hub_port_changes_callback(usb_device_t *, uint8_t *, size_t, 91 void *); 87 bool hub_port_changes_callback(usb_device_t *dev, 88 uint8_t *change_bitmap, size_t change_bitmap_size, void *arg); 92 89 93 90 #endif 94 95 91 /** 96 92 * @}
Note:
See TracChangeset
for help on using the changeset viewer.