Changeset d09791e6 in mainline for uspace/lib
- Timestamp:
- 2012-12-20T15:40:23Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a720ff6
- Parents:
- d9b2c73
- Location:
- uspace/lib/usbhost
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/include/usb/host/hcd.h
rd9b2c73 rd09791e6 107 107 const match_id_list_t *mids); 108 108 109 int hcd_setup_device(ddf_dev_t *device );109 int hcd_setup_device(ddf_dev_t *device, ddf_fun_t **fun); 110 110 int hcd_setup_hub(hcd_t *instance, usb_address_t *address, ddf_dev_t *dev); 111 111 -
uspace/lib/usbhost/src/hcd.c
rd9b2c73 rd09791e6 307 307 * - registers interrupt handler 308 308 */ 309 int hcd_setup_device(ddf_dev_t *device )309 int hcd_setup_device(ddf_dev_t *device, ddf_fun_t **hc_fun) 310 310 { 311 311 if (device == NULL) … … 355 355 356 356 /* HC should be ok at this point (except it can't do anything) */ 357 if (hc_fun) 358 *hc_fun = instance->hc_fun; 357 359 358 360 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.