Changes in uspace/drv/uhci-hcd/main.c [d2bff2f:4125b7d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/main.c
rd2bff2f r4125b7d 64 64 assert(device); 65 65 66 int ret = device_setup_uhci(device); 66 uhci_t *uhci = malloc(sizeof(uhci_t)); 67 if (uhci == NULL) { 68 usb_log_error("Failed to allocate UHCI driver.\n"); 69 return ENOMEM; 70 } 71 72 int ret = uhci_init(uhci, device); 67 73 if (ret != EOK) { 68 74 usb_log_error("Failed to initialize UHCI driver: %s.\n", … … 70 76 return ret; 71 77 } 78 device->driver_data = uhci; 79 72 80 usb_log_info("Controlling new UHCI device '%s'.\n", device->name); 73 81
Note:
See TracChangeset
for help on using the changeset viewer.