Changeset 64861b8 in mainline for uspace/app/usbinfo/info.c
- Timestamp:
- 2011-01-21T12:26:09Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e8ad0de
- Parents:
- b65ca41d (diff), 96b0faef (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/app/usbinfo/info.c
rb65ca41d r64861b8 72 72 return rc; 73 73 } 74 dump_ standard_device_descriptor(&device_descriptor);74 dump_usb_descriptor((uint8_t *)&device_descriptor, sizeof(device_descriptor)); 75 75 76 76 /* … … 91 91 return rc; 92 92 } 93 dump_standard_configuration_descriptor(config_index, 94 &config_descriptor); 93 //dump_standard_configuration_descriptor(config_index, &config_descriptor); 95 94 96 95 void *full_config_descriptor = malloc(config_descriptor.total_length); … … 109 108 return rc; 110 109 } 111 dump_buffer("Full configuration descriptor:",112 full_config_descriptor, config_descriptor.total_length);113 110 114 111 dump_descriptor_tree(full_config_descriptor,
Note:
See TracChangeset
for help on using the changeset viewer.