Changes in uspace/lib/usbdev/src/recognise.c [5a6cc679:a35b458] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/src/recognise.c
r5a6cc679 ra35b458 61 61 */ 62 62 static errno_t usb_add_match_id(match_id_list_t *matches, int score, 63 c onst char *match_str)63 char *match_str) 64 64 { 65 65 assert(matches); … … 235 235 (int) device_descriptor->product_id, 236 236 BCD_ARGS(device_descriptor->device_version)); 237 237 238 238 /* Next, without release number. */ 239 239 ADD_MATCHID_OR_RETURN(matches, 90, … … 246 246 ADD_MATCHID_OR_RETURN(matches, 50, "usb&class=%s", 247 247 usb_str_class(device_descriptor->device_class)); 248 248 249 249 /* As a last resort, try fallback driver. */ 250 250 ADD_MATCHID_OR_RETURN(matches, 10, "usb&fallback");
Note:
See TracChangeset
for help on using the changeset viewer.