Changeset 026d6e2 in mainline for uspace/lib/drv/include/usbhc_iface.h
- Timestamp:
- 2011-02-18T19:41:52Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b6c7da6, fbf0589
- Parents:
- 9df965ec (diff), 0c00dac (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/include/usbhc_iface.h
r9df965ec r026d6e2 216 216 217 217 /** Out transfer processing function prototype. */ 218 typedef int (*usbhc_iface_transfer_out_t)(device_t *, usb_target_t, 218 typedef int (*usbhc_iface_transfer_out_t)(device_t *, usb_target_t, size_t, 219 219 void *, size_t, 220 220 usbhc_iface_transfer_out_callback_t, void *); 221 221 222 /** Setup transfer processing function prototype. */222 /** Setup transfer processing function prototype. @deprecated */ 223 223 typedef usbhc_iface_transfer_out_t usbhc_iface_transfer_setup_t; 224 224 225 225 /** In transfer processing function prototype. */ 226 typedef int (*usbhc_iface_transfer_in_t)(device_t *, usb_target_t, 226 typedef int (*usbhc_iface_transfer_in_t)(device_t *, usb_target_t, size_t, 227 227 void *, size_t, 228 228 usbhc_iface_transfer_in_callback_t, void *); … … 252 252 253 253 int (*control_write)(device_t *, usb_target_t, 254 size_t, 254 255 void *, size_t, void *, size_t, 255 256 usbhc_iface_transfer_out_callback_t, void *); 256 257 257 258 int (*control_read)(device_t *, usb_target_t, 259 size_t, 258 260 void *, size_t, void *, size_t, 259 261 usbhc_iface_transfer_in_callback_t, void *);
Note:
See TracChangeset
for help on using the changeset viewer.