Changeset f126c87 in mainline for uspace/app/usbinfo/info.c
- Timestamp:
- 2016-09-01T16:46:27Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2a2fbc8
- Parents:
- 9befb0d (diff), bdfdc51c (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
r9befb0d rf126c87 93 93 init_match_ids(&matches); 94 94 usb_device_create_match_ids_from_device_descriptor( 95 95 &usb_device_descriptors(usb_dev)->device, &matches); 96 96 printf("%sDevice match ids (0x%04x by 0x%04x, %s)\n", get_indent(0), 97 97 usb_device_descriptors(usb_dev)->device.product_id, … … 229 229 { 230 230 dump_descriptor_tree_callback( 231 (const uint8_t *) &usb_device_descriptors(usb_dev)->device,231 (const uint8_t *) &usb_device_descriptors(usb_dev)->device, 232 232 (size_t) -1, NULL); 233 233 … … 242 242 { 243 243 dump_descriptor_tree_callback( 244 (const uint8_t *) &usb_device_descriptors(usb_dev)->device,244 (const uint8_t *) &usb_device_descriptors(usb_dev)->device, 245 245 (size_t) -1, usb_dev); 246 246 … … 296 296 uint64_t str_mask = 0; 297 297 find_string_indexes_callback( 298 (const uint8_t *) &usb_device_descriptors(usb_dev)->device, 0,298 (const uint8_t *) &usb_device_descriptors(usb_dev)->device, 0, 299 299 &str_mask); 300 300
Note:
See TracChangeset
for help on using the changeset viewer.