Changes in / [33577f81:fa8f1f7] in mainline
- Files:
-
- 6 added
- 2 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
.bzrignore
r33577f81 rfa8f1f7 88 88 ./uspace/drv/uhci-hcd/uhci-hcd 89 89 ./uspace/drv/uhci-rhd/uhci-rhd 90 ./uspace/drv/usbflbk/usbflbk 90 91 ./uspace/drv/usbhub/usbhub 91 92 ./uspace/drv/usbhid/usbhid -
boot/arch/amd64/Makefile.inc
r33577f81 rfa8f1f7 47 47 uhci-hcd \ 48 48 uhci-rhd \ 49 usbflbk \ 49 50 usbhub \ 50 51 usbhid \ -
uspace/Makefile
r33577f81 rfa8f1f7 121 121 drv/uhci-hcd \ 122 122 drv/uhci-rhd \ 123 drv/usbflbk \ 123 124 drv/usbhid \ 124 125 drv/usbhub \ … … 140 141 drv/uhci-hcd \ 141 142 drv/uhci-rhd \ 143 drv/usbflbk \ 142 144 drv/usbhid \ 143 145 drv/usbhub \ -
uspace/app/usbinfo/info.c
r33577f81 rfa8f1f7 109 109 usb_standard_device_descriptor_t *descriptor) 110 110 { 111 printf("%sDevice (0x%04x by 0x%04x, %s )\n", prefix,111 printf("%sDevice (0x%04x by 0x%04x, %s, %zu configurations)\n", prefix, 112 112 (int) descriptor->product_id, 113 113 (int) descriptor->vendor_id, 114 usb_str_class(descriptor->device_class)); 114 usb_str_class(descriptor->device_class), 115 (size_t) descriptor->configuration_count); 115 116 } 116 117 … … 118 119 usb_standard_configuration_descriptor_t *descriptor) 119 120 { 120 printf("%sConfiguration #%d\n", prefix, 121 (int) descriptor->configuration_number); 121 printf("%sConfiguration #%d (%zu interfaces)\n", prefix, 122 (int) descriptor->configuration_number, 123 (size_t) descriptor->interface_count); 122 124 } 123 125 … … 125 127 usb_standard_interface_descriptor_t *descriptor) 126 128 { 127 printf("%sInterface #%d (%s, 0x%02x, 0x%02x) \n", prefix,129 printf("%sInterface #%d (%s, 0x%02x, 0x%02x), alternate %d\n", prefix, 128 130 (int) descriptor->interface_number, 129 131 usb_str_class(descriptor->interface_class), 130 132 (int) descriptor->interface_subclass, 131 (int) descriptor->interface_protocol); 133 (int) descriptor->interface_protocol, 134 (int) descriptor->alternate_setting); 132 135 } 133 136 -
uspace/doc/doxygroups.h
r33577f81 rfa8f1f7 274 274 */ 275 275 276 276 /** 277 * @defgroup drvusbfallback USB fallback driver. 278 * @ingroup usb 279 * @brief Fallback driver for any USB device. 280 * @details 281 * The purpose of this driver is to simplify querying of unknown 282 * devices from within HelenOS (without a driver, no node at all 283 * may appear under /dev/devices). 284 */ 285 286 -
uspace/lib/usb/src/recognise.c
r33577f81 rfa8f1f7 291 291 } 292 292 293 /* As a last resort, try fallback driver. */ 294 ADD_MATCHID_OR_RETURN(matches, 10, "usb&fallback"); 295 293 296 return EOK; 294 297 }
Note:
See TracChangeset
for help on using the changeset viewer.