Changes in uspace/lib/drv/include/usbhc_iface.h [9753220:3b77628] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/include/usbhc_iface.h
r9753220 r3b77628 201 201 IPC_M_USBHC_CONTROL_READ_STATUS, 202 202 203 /** Issue control WRITE transfer.204 * See explanation at usb_iface_funcs_t (OUT transaction) for205 * call parameters.206 * This call is immediately followed by two IPC data writes207 * from the caller (setup packet and actual data).208 */209 IPC_M_USBHC_CONTROL_WRITE,210 211 /** Issue control WRITE transfer.212 * See explanation at usb_iface_funcs_t (IN transaction) for213 * call parameters.214 * This call is immediately followed by IPC data read from the caller215 * (setup packet).216 * Actual data are retrieved through IPC_M_USBHC_GET_BUFFER.217 */218 IPC_M_USBHC_CONTROL_READ,219 203 220 204 /* IPC_M_USB_ */ … … 265 249 int (*control_read_status)(device_t *, usb_target_t, 266 250 usbhc_iface_transfer_out_callback_t, void *); 267 268 int (*control_write)(device_t *, usb_target_t,269 void *, size_t, void *, size_t,270 usbhc_iface_transfer_out_callback_t, void *);271 272 int (*control_read)(device_t *, usb_target_t,273 void *, size_t, void *, size_t,274 usbhc_iface_transfer_in_callback_t, void *);275 251 } usbhc_iface_t; 276 252
Note:
See TracChangeset
for help on using the changeset viewer.