Changes in uspace/lib/usbdev/include/usb/dev/hub.h [6e3c005:77ad86c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/include/usb/dev/hub.h
r6e3c005 r77ad86c 35 35 * For class specific requests, see usb/classes/hub.h. 36 36 */ 37 37 38 #ifndef LIBUSBDEV_HUB_H_ 38 39 #define LIBUSBDEV_HUB_H_ … … 43 44 #include <usb/hc.h> 44 45 45 int usb_hc_new_device_wrapper(ddf_dev_t *, usb_hc_connection_t *, usb_speed_t,46 extern int usb_hc_new_device_wrapper(ddf_dev_t *, usb_hc_connection_t *, usb_speed_t, 46 47 int (*)(void *), void *, usb_address_t *, ddf_dev_ops_t *, void *, 47 48 ddf_fun_t **); … … 60 61 } usb_hub_attached_device_t; 61 62 62 int usb_hub_register_device(usb_hc_connection_t *,63 extern int usb_hub_register_device(usb_hc_connection_t *, 63 64 const usb_hub_attached_device_t *); 64 65 … … 69 70 if (attached_device == NULL) 70 71 return EBADMEM; 72 71 73 return usb_hc_release_address(conn, attached_device->address); 72 74 } 73 75 74 76 #endif 77 75 78 /** 76 79 * @}
Note:
See TracChangeset
for help on using the changeset viewer.