Changeset e26a9d95 in mainline for uspace/drv/bus/usb/ehci/main.c
- Timestamp:
- 2014-01-18T17:14:42Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3e200736
- Parents:
- 19b3cc6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/main.c
r19b3cc6 re26a9d95 64 64 return ENOMEM; 65 65 66 const int ret = 66 const int ret = hc_init(instance, res, irq); 67 67 if (ret == EOK) 68 68 hcd_set_implementation(hcd, instance, hc_schedule, 69 NULL, NULL, ehci_interrupt );69 NULL, NULL, ehci_interrupt, NULL); 70 70 return ret; 71 71 } … … 78 78 79 79 free(hcd->driver.data); 80 hcd_set_implementation(hcd, NULL, NULL, NULL, NULL, NULL );80 hcd_set_implementation(hcd, NULL, NULL, NULL, NULL, NULL, NULL); 81 81 } 82 82
Note:
See TracChangeset
for help on using the changeset viewer.