Changes in uspace/drv/bus/usb/usbmid/explore.c [5a6cc679:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbmid/explore.c
r5a6cc679 rb7fd2a0 106 106 107 107 108 usb_log_info("Creating child for interface %d (%s). ",108 usb_log_info("Creating child for interface %d (%s).\n", 109 109 interface->interface_number, 110 110 usb_str_class(interface->interface_class)); … … 144 144 dev_class, usb_str_class(dev_class), 145 145 USB_CLASS_USE_INTERFACE); 146 usb_log_error("Not a multi-interface device, refusing. ");146 usb_log_error("Not a multi-interface device, refusing.\n"); 147 147 return ENOTSUP; 148 148 } … … 160 160 config_descriptor->configuration_number); 161 161 if (rc != EOK) { 162 usb_log_error("Failed to set device configuration: %s. ",162 usb_log_error("Failed to set device configuration: %s.\n", 163 163 str_error(rc)); 164 164 return rc; … … 168 168 usb_mid_t *usb_mid = usb_device_data_alloc(dev, sizeof(usb_mid_t)); 169 169 if (!usb_mid) { 170 usb_log_error("Failed to create USB MID structure. ");170 usb_log_error("Failed to create USB MID structure.\n"); 171 171 return ENOMEM; 172 172 } … … 175 175 usb_mid->ctl_fun = usb_device_ddf_fun_create(dev, fun_exposed, "ctl"); 176 176 if (usb_mid->ctl_fun == NULL) { 177 usb_log_error("Failed to create control function. ");177 usb_log_error("Failed to create control function.\n"); 178 178 return ENOMEM; 179 179 } … … 182 182 rc = ddf_fun_bind(usb_mid->ctl_fun); 183 183 if (rc != EOK) { 184 usb_log_error("Failed to bind control function: %s. ",184 usb_log_error("Failed to bind control function: %s.\n", 185 185 str_error(rc)); 186 186 ddf_fun_destroy(usb_mid->ctl_fun);
Note:
See TracChangeset
for help on using the changeset viewer.