Ignore:
File:
1 edited

Legend:

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

    r0f21c0c r7f56fb7  
    3434 */
    3535#include <sys/types.h>
     36#include <usb/usbdrv.h>
    3637#include <usb/pipes.h>
    3738#include <usb/recognise.h>
     
    240241 * @return Error code.
    241242 */
    242 int usb_device_create_match_ids_from_device_descriptor(
    243     const usb_standard_device_descriptor_t *device_descriptor,
    244     match_id_list_t *matches)
     243int usb_drv_create_match_ids_from_device_descriptor(
     244    match_id_list_t *matches,
     245    const usb_standard_device_descriptor_t *device_descriptor)
    245246{
    246247        /*
     
    302303        }
    303304
    304         rc = usb_device_create_match_ids_from_device_descriptor(
    305             &device_descriptor, matches);
     305        rc = usb_drv_create_match_ids_from_device_descriptor(matches,
     306            &device_descriptor);
    306307        if (rc != EOK) {
    307308                return rc;
Note: See TracChangeset for help on using the changeset viewer.