Changes in uspace/drv/usbhub/usbhub.h [578a2547:625f1ba] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/usbhub.h
r578a2547 r625f1ba 47 47 #include <usb/devdrv.h> 48 48 49 #include "ports.h"50 51 52 49 53 50 /** Information about attached hub. */ 54 51 typedef struct { 55 52 /** Number of ports. */ 56 size_t port_count;53 int port_count; 57 54 58 /** Ports.*/59 usb_h ub_port_t *ports;55 /** attached device handles, for each port one */ 56 usb_hc_attached_device_t * attached_devs; 60 57 61 58 /** connection to hcd */ … … 103 100 int usb_hub_check_hub_changes(usb_hub_info_t * hub_info_param); 104 101 105 void usb_hub_removed_device(usb_hub_info_t *, uint16_t);106 void usb_hub_over_current(usb_hub_info_t *, uint16_t);107 102 108 103 int usb_hub_add_device(usb_device_t * usb_dev);
Note:
See TracChangeset
for help on using the changeset viewer.