Changes in / [fa8f1f7:33577f81] in mainline
- Files:
-
- 2 added
- 6 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
.bzrignore
rfa8f1f7 r33577f81 88 88 ./uspace/drv/uhci-hcd/uhci-hcd 89 89 ./uspace/drv/uhci-rhd/uhci-rhd 90 ./uspace/drv/usbflbk/usbflbk91 90 ./uspace/drv/usbhub/usbhub 92 91 ./uspace/drv/usbhid/usbhid -
boot/arch/amd64/Makefile.inc
rfa8f1f7 r33577f81 47 47 uhci-hcd \ 48 48 uhci-rhd \ 49 usbflbk \50 49 usbhub \ 51 50 usbhid \ -
uspace/Makefile
rfa8f1f7 r33577f81 121 121 drv/uhci-hcd \ 122 122 drv/uhci-rhd \ 123 drv/usbflbk \124 123 drv/usbhid \ 125 124 drv/usbhub \ … … 141 140 drv/uhci-hcd \ 142 141 drv/uhci-rhd \ 143 drv/usbflbk \144 142 drv/usbhid \ 145 143 drv/usbhub \ -
uspace/app/usbinfo/info.c
rfa8f1f7 r33577f81 109 109 usb_standard_device_descriptor_t *descriptor) 110 110 { 111 printf("%sDevice (0x%04x by 0x%04x, %s , %zu configurations)\n", prefix,111 printf("%sDevice (0x%04x by 0x%04x, %s)\n", prefix, 112 112 (int) descriptor->product_id, 113 113 (int) descriptor->vendor_id, 114 usb_str_class(descriptor->device_class), 115 (size_t) descriptor->configuration_count); 114 usb_str_class(descriptor->device_class)); 116 115 } 117 116 … … 119 118 usb_standard_configuration_descriptor_t *descriptor) 120 119 { 121 printf("%sConfiguration #%d (%zu interfaces)\n", prefix, 122 (int) descriptor->configuration_number, 123 (size_t) descriptor->interface_count); 120 printf("%sConfiguration #%d\n", prefix, 121 (int) descriptor->configuration_number); 124 122 } 125 123 … … 127 125 usb_standard_interface_descriptor_t *descriptor) 128 126 { 129 printf("%sInterface #%d (%s, 0x%02x, 0x%02x) , alternate %d\n", prefix,127 printf("%sInterface #%d (%s, 0x%02x, 0x%02x)\n", prefix, 130 128 (int) descriptor->interface_number, 131 129 usb_str_class(descriptor->interface_class), 132 130 (int) descriptor->interface_subclass, 133 (int) descriptor->interface_protocol, 134 (int) descriptor->alternate_setting); 131 (int) descriptor->interface_protocol); 135 132 } 136 133 -
uspace/doc/doxygroups.h
rfa8f1f7 r33577f81 274 274 */ 275 275 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 276 -
uspace/lib/usb/src/recognise.c
rfa8f1f7 r33577f81 291 291 } 292 292 293 /* As a last resort, try fallback driver. */294 ADD_MATCHID_OR_RETURN(matches, 10, "usb&fallback");295 296 293 return EOK; 297 294 }
Note:
See TracChangeset
for help on using the changeset viewer.