Changes in uspace/lib/usbdev/src/recognise.c [162726b:160b75e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/src/recognise.c
r162726b r160b75e 339 339 * @param[in] hc_handle Handle of the host controller. 340 340 * @param[in] parent Parent device. 341 * @param[out] child_handle Handle of the child device. 341 342 * @param[in] dev_ops Child device ops. 342 343 * @param[in] dev_data Arbitrary pointer to be stored in the child … … 347 348 */ 348 349 int usb_device_register_child_in_devman(usb_address_t address, 349 devman_handle_t hc_handle, ddf_dev_t *parent, 350 devman_handle_t hc_handle, 351 ddf_dev_t *parent, devman_handle_t *child_handle, 350 352 ddf_dev_ops_t *dev_ops, void *dev_data, ddf_fun_t **child_fun) 351 353 { … … 412 414 } 413 415 416 if (child_handle != NULL) { 417 *child_handle = child->handle; 418 } 419 414 420 if (child_fun != NULL) { 415 421 *child_fun = child;
Note:
See TracChangeset
for help on using the changeset viewer.