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