Changes in uspace/drv/bus/usb/usbhub/usbhub.h [58563585:bb70637] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/usbhub.h
r58563585 rbb70637 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 … … 84 82 extern const usb_endpoint_description_t hub_status_change_endpoint_description; 85 83 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 *);84 int usb_hub_device_add(usb_device_t *usb_dev); 85 int usb_hub_device_remove(usb_device_t *usb_dev); 86 int usb_hub_device_gone(usb_device_t *usb_dev); 89 87 90 extern bool hub_port_changes_callback(usb_device_t *, uint8_t *, size_t,91 void *);88 bool hub_port_changes_callback(usb_device_t *dev, 89 uint8_t *change_bitmap, size_t change_bitmap_size, void *arg); 92 90 93 91 #endif 94 95 92 /** 96 93 * @}
Note:
See TracChangeset
for help on using the changeset viewer.