Changes in / [8f5b6561:b43bcf1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/recognise.c
r8f5b6561 rb43bcf1 161 161 /* First, with release number. */ 162 162 rc = usb_add_match_id(matches, 100, 163 "usb&vendor= 0x%04x&product=0x%04x&release=" BCD_FMT,163 "usb&vendor=%d&product=%d&release=" BCD_FMT, 164 164 (int) device_descriptor->vendor_id, 165 165 (int) device_descriptor->product_id, … … 170 170 171 171 /* Next, without release number. */ 172 rc = usb_add_match_id(matches, 90, 173 "usb&vendor=0x%04x&product=0x%04x", 172 rc = usb_add_match_id(matches, 90, "usb&vendor=%d&product=%d", 174 173 (int) device_descriptor->vendor_id, 175 174 (int) device_descriptor->product_id);
Note:
See TracChangeset
for help on using the changeset viewer.