Changeset 83c3123 in mainline for uspace/drv/bus/usb/vhc/connhost.c
- Timestamp:
- 2011-10-27T11:40:06Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7265558
- Parents:
- 4267908
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/vhc/connhost.c
r4267908 r83c3123 143 143 VHC_DATA(vhc, fun); 144 144 145 endpoint_t *ep = endpoint_ get(146 address, endpoint, direction, transfer_type, USB_SPEED_FULL, 1 );145 endpoint_t *ep = endpoint_create( 146 address, endpoint, direction, transfer_type, USB_SPEED_FULL, 1, 0); 147 147 if (ep == NULL) { 148 148 return ENOMEM; … … 414 414 415 415 endpoint_t *ep = usb_endpoint_manager_get_ep(&vhc->ep_manager, 416 target.address, target.endpoint, USB_DIRECTION_IN , NULL);416 target.address, target.endpoint, USB_DIRECTION_IN); 417 417 if (ep == NULL) { 418 418 return ENOENT; … … 456 456 457 457 endpoint_t *ep = usb_endpoint_manager_get_ep(&vhc->ep_manager, 458 target.address, target.endpoint, USB_DIRECTION_OUT , NULL);458 target.address, target.endpoint, USB_DIRECTION_OUT); 459 459 if (ep == NULL) { 460 460 return ENOENT;
Note:
See TracChangeset
for help on using the changeset viewer.