Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbdev/src/recognise.c

    r5a6cc679 ra35b458  
    6161 */
    6262static errno_t usb_add_match_id(match_id_list_t *matches, int score,
    63     const char *match_str)
     63    char *match_str)
    6464{
    6565        assert(matches);
     
    235235                    (int) device_descriptor->product_id,
    236236                    BCD_ARGS(device_descriptor->device_version));
    237                
     237
    238238                /* Next, without release number. */
    239239                ADD_MATCHID_OR_RETURN(matches, 90,
     
    246246        ADD_MATCHID_OR_RETURN(matches, 50, "usb&class=%s",
    247247            usb_str_class(device_descriptor->device_class));
    248        
     248
    249249        /* As a last resort, try fallback driver. */
    250250        ADD_MATCHID_OR_RETURN(matches, 10, "usb&fallback");
Note: See TracChangeset for help on using the changeset viewer.