Changes in uspace/drv/bus/usb/ohci/ohci.c [b5111c46:7de1988c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/ohci.c
rb5111c46 r7de1988c 34 34 */ 35 35 36 /* XXX Fix this */ 37 #define _DDF_DATA_IMPLANT 38 36 39 #include <errno.h> 37 40 #include <str_error.h> … … 162 165 163 166 ddf_fun_set_ops(instance->hc_fun, &hc_ops); 167 ddf_fun_data_implant(instance->hc_fun, &instance->hc); 164 168 165 169 instance->rh_fun = ddf_fun_create(device, fun_inner, "ohci_rh"); … … 210 214 } 211 215 212 rc = hc_init(&instance->hc, instance->hc_fun,®s, interrupts);216 rc = hc_init(&instance->hc, ®s, interrupts); 213 217 if (rc != EOK) { 214 218 usb_log_error("Failed to init ohci_hcd: %s.\n", str_error(rc));
Note:
See TracChangeset
for help on using the changeset viewer.