Changeset 6b1931b in mainline


Ignore:
Timestamp:
2011-02-12T20:27:49Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
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.
Message:

Merge development/ changes

File:
1 edited

Legend:

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

    rf6a1386 r6b1931b  
    161161                /* First, with release number. */
    162162                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,
    164164                    (int) device_descriptor->vendor_id,
    165165                    (int) device_descriptor->product_id,
     
    170170               
    171171                /* 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",
    173174                    (int) device_descriptor->vendor_id,
    174175                    (int) device_descriptor->product_id);
Note: See TracChangeset for help on using the changeset viewer.