Changes in uspace/drv/usbhub/utils.c [ea5dbaf:6e5dc07] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/utils.c
rea5dbaf r6e5dc07 401 401 if(opResult!=EOK){ 402 402 printf("[usb_hub] could not get device descriptor, %d\n",opResult); 403 return 1;///\TODO some proper error code needed403 return opResult; 404 404 } 405 405 printf("[usb_hub] hub has %d configurations\n",std_descriptor.configuration_count); … … 413 413 if(opResult!=EOK){ 414 414 printf("[usb_hub] could not get configuration descriptor, %d\n",opResult); 415 return 1;///\TODO some proper error code needed415 return opResult; 416 416 } 417 417 //set configuration
Note:
See TracChangeset
for help on using the changeset viewer.