Changeset 0f21c0c in mainline for uspace/lib/usb/src
- Timestamp:
- 2011-02-20T23:21:20Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 41b70d30, 9f554e64
- Parents:
- 83c291d
- Location:
- uspace/lib/usb/src
- Files:
-
- 3 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/dp.c
r83c291d r0f21c0c 37 37 #include <str_error.h> 38 38 #include <errno.h> 39 #include < usb/usbdrv.h>39 #include <assert.h> 40 40 #include <bool.h> 41 41 #include <usb/dp.h> -
uspace/lib/usb/src/recognise.c
r83c291d r0f21c0c 34 34 */ 35 35 #include <sys/types.h> 36 #include <usb/usbdrv.h>37 36 #include <usb/pipes.h> 38 37 #include <usb/recognise.h> … … 241 240 * @return Error code. 242 241 */ 243 int usb_d rv_create_match_ids_from_device_descriptor(244 match_id_list_t *matches,245 const usb_standard_device_descriptor_t *device_descriptor)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) 246 245 { 247 246 /* … … 303 302 } 304 303 305 rc = usb_d rv_create_match_ids_from_device_descriptor(matches,306 &device_descriptor );304 rc = usb_device_create_match_ids_from_device_descriptor( 305 &device_descriptor, matches); 307 306 if (rc != EOK) { 308 307 return rc; -
uspace/lib/usb/src/request.c
r83c291d r0f21c0c 34 34 */ 35 35 #include <usb/request.h> 36 #include <usb/devreq.h>37 36 #include <errno.h> 38 37
Note:
See TracChangeset
for help on using the changeset viewer.