Changeset f5246b6 in mainline for uspace/drv/usbhub/usbhub.c
- Timestamp:
- 2011-03-04T22:48:24Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0e06a14
- Parents:
- 3c775adb (diff), 03f7952 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/usbhub.c
r3c775adb rf5246b6 233 233 dprintf(USB_LOG_LEVEL_DEBUG, "starting control transaction"); 234 234 usb_endpoint_pipe_start_session(&result->endpoints.control); 235 opResult = usb_request_set_configuration(&result->endpoints.control, 1); 236 assert(opResult == EOK); 237 235 238 opResult = usb_request_get_descriptor(&result->endpoints.control, 236 239 USB_REQUEST_TYPE_CLASS, USB_REQUEST_RECIPIENT_DEVICE, … … 243 246 dprintf(USB_LOG_LEVEL_ERROR, "failed when receiving hub descriptor, badcode = %d",opResult); 244 247 free(serialized_descriptor); 245 return result; 248 free(result); 249 return NULL; 246 250 } 247 251 dprintf(USB_LOG_LEVEL_DEBUG2, "deserializing descriptor"); … … 249 253 if(descriptor==NULL){ 250 254 dprintf(USB_LOG_LEVEL_WARNING, "could not deserialize descriptor "); 251 result->port_count = 1;///\TODO this code is only for debug!!!252 return result;255 free(result); 256 return NULL; 253 257 } 254 258 … … 286 290 287 291 usb_hub_info_t * hub_info = usb_create_hub_info(dev); 292 if(!hub_info){ 293 return EINTR; 294 } 288 295 289 296 int opResult; … … 294 301 opResult = usb_hub_process_configuration_descriptors(hub_info); 295 302 if(opResult != EOK){ 296 dprintf(USB_LOG_LEVEL_ERROR,"could not get con diguration descriptors, %d",303 dprintf(USB_LOG_LEVEL_ERROR,"could not get configuration descriptors, %d", 297 304 opResult); 298 305 return opResult;
Note:
See TracChangeset
for help on using the changeset viewer.