Changeset e1e4192 in mainline for uspace/lib/usbdev/include/usb/dev/hub.h
- Timestamp:
- 2012-06-03T20:45:58Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 90478727
- Parents:
- f7e69f5 (diff), 3123d2a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/include/usb/dev/hub.h
rf7e69f5 re1e4192 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.