Changes in uspace/lib/usb/src/recognise.c [0f21c0c:7f56fb7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/recognise.c
r0f21c0c r7f56fb7 34 34 */ 35 35 #include <sys/types.h> 36 #include <usb/usbdrv.h> 36 37 #include <usb/pipes.h> 37 38 #include <usb/recognise.h> … … 240 241 * @return Error code. 241 242 */ 242 int usb_d evice_create_match_ids_from_device_descriptor(243 const usb_standard_device_descriptor_t *device_descriptor,244 match_id_list_t *matches)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) 245 246 { 246 247 /* … … 302 303 } 303 304 304 rc = usb_d evice_create_match_ids_from_device_descriptor(305 &device_descriptor , matches);305 rc = usb_drv_create_match_ids_from_device_descriptor(matches, 306 &device_descriptor); 306 307 if (rc != EOK) { 307 308 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.