Changeset 41b70d30 in mainline for uspace/lib/usb/src/recognise.c


Ignore:
Timestamp:
2011-02-20T23:26:09Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b317b0b, dbe25f1
Parents:
d37b235 (diff), 0f21c0c (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:

Removal of old "phones" API from libusb

No public function from libusb uses IPC phones directly.

File:
1 edited

Legend:

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

    rd37b235 r41b70d30  
    3434 */
    3535#include <sys/types.h>
    36 #include <usb/usbdrv.h>
    3736#include <usb/pipes.h>
    3837#include <usb/recognise.h>
     
    241240 * @return Error code.
    242241 */
    243 int usb_drv_create_match_ids_from_device_descriptor(
    244     match_id_list_t *matches,
    245     const usb_standard_device_descriptor_t *device_descriptor)
     242int usb_device_create_match_ids_from_device_descriptor(
     243    const usb_standard_device_descriptor_t *device_descriptor,
     244    match_id_list_t *matches)
    246245{
    247246        /*
     
    303302        }
    304303
    305         rc = usb_drv_create_match_ids_from_device_descriptor(matches,
    306             &device_descriptor);
     304        rc = usb_device_create_match_ids_from_device_descriptor(
     305            &device_descriptor, matches);
    307306        if (rc != EOK) {
    308307                return rc;
Note: See TracChangeset for help on using the changeset viewer.