Changeset 6b1931b in mainline
- Timestamp:
- 2011-02-12T20:27:49Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3937bda
- Parents:
- f6a1386 (diff), 8f5b6561 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/recognise.c
rf6a1386 r6b1931b 161 161 /* First, with release number. */ 162 162 rc = usb_add_match_id(matches, 100, 163 "usb&vendor= %d&product=%d&release=" BCD_FMT,163 "usb&vendor=0x%04x&product=0x%04x&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, "usb&vendor=%d&product=%d", 172 rc = usb_add_match_id(matches, 90, 173 "usb&vendor=0x%04x&product=0x%04x", 173 174 (int) device_descriptor->vendor_id, 174 175 (int) device_descriptor->product_id);
Note:
See TracChangeset
for help on using the changeset viewer.