Changeset 70c85211 in mainline for uspace/lib/usb/include
- Timestamp:
- 2010-12-03T13:03:26Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 101ef25c
- Parents:
- bbc28be (diff), 4570779 (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. - Location:
- uspace/lib/usb/include/usb
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/include/usb/hcdhubd.h
rbbc28be r70c85211 37 37 38 38 #include <adt/list.h> 39 #include <bool.h> 39 40 #include <driver.h> 40 41 #include <usb/usb.h> … … 175 176 int usb_hc_async_wait_for(usb_handle_t); 176 177 178 int usb_hc_add_child_device(device_t *, const char *, const char *, bool); 177 179 178 180 #endif -
uspace/lib/usb/include/usb/usbdrv.h
rbbc28be r70c85211 48 48 void *, size_t, size_t *, usb_handle_t *); 49 49 50 int usb_drv_async_control_write_setup(int, usb_target_t, 51 void *, size_t, usb_handle_t *); 52 int usb_drv_async_control_write_data(int, usb_target_t, 53 void *, size_t, usb_handle_t *); 54 int usb_drv_async_control_write_status(int, usb_target_t, 55 usb_handle_t *); 56 57 int usb_drv_async_control_read_setup(int, usb_target_t, 58 void *, size_t, usb_handle_t *); 59 int usb_drv_async_control_read_data(int, usb_target_t, 60 void *, size_t, size_t *, usb_handle_t *); 61 int usb_drv_async_control_read_status(int, usb_target_t, 62 usb_handle_t *); 63 50 64 int usb_drv_async_wait_for(usb_handle_t); 51 65
Note:
See TracChangeset
for help on using the changeset viewer.