Changeset 95120c3 in mainline
- Timestamp:
- 2011-02-20T17:00:54Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 27a0012
- Parents:
- b68b279
- Location:
- uspace/lib/drv
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_usb.c
rb68b279 r95120c3 40 40 41 41 42 static void remote_usb_get_address(device_t *, void *, ipc_callid_t, ipc_call_t *); 43 static void remote_usb_get_interface(device_t *, void *, ipc_callid_t, ipc_call_t *); 42 44 static void remote_usb_get_hc_handle(device_t *, void *, ipc_callid_t, ipc_call_t *); 43 static void remote_usb_get_address(device_t *, void *, ipc_callid_t, ipc_call_t *);44 45 //static void remote_usb(device_t *, void *, ipc_callid_t, ipc_call_t *); 45 46 … … 47 48 static remote_iface_func_ptr_t remote_usb_iface_ops [] = { 48 49 remote_usb_get_address, 50 remote_usb_get_interface, 49 51 remote_usb_get_hc_handle 50 52 }; … … 80 82 } 81 83 84 void remote_usb_get_interface(device_t *device, void *iface, 85 ipc_callid_t callid, ipc_call_t *call) 86 { 87 usb_iface_t *usb_iface = (usb_iface_t *) iface; 88 89 if (usb_iface->get_interface == NULL) { 90 async_answer_0(callid, ENOTSUP); 91 return; 92 } 93 94 devman_handle_t handle = DEV_IPC_GET_ARG1(*call); 95 96 int iface_no; 97 int rc = usb_iface->get_interface(device, handle, &iface_no); 98 if (rc != EOK) { 99 async_answer_0(callid, rc); 100 } else { 101 async_answer_1(callid, EOK, iface_no); 102 } 103 } 82 104 83 105 void remote_usb_get_hc_handle(device_t *device, void *iface, -
uspace/lib/drv/include/usb_iface.h
rb68b279 r95120c3 52 52 IPC_M_USB_GET_ADDRESS, 53 53 54 /** Tell interface number given device can use. 55 * Parameters 56 * - devman handle id of the device 57 * Answer: 58 * - ENOTSUP - operation not supported (can also mean any interface) 59 * - EOK - operation okay, first parameter contains interface number 60 */ 61 IPC_M_USB_GET_INTERFACE, 62 54 63 /** Tell devman handle of device host controller. 55 64 * Parameters: … … 67 76 typedef struct { 68 77 int (*get_address)(device_t *, devman_handle_t, usb_address_t *); 78 int (*get_interface)(device_t *, devman_handle_t, int *); 69 79 int (*get_hc_handle)(device_t *, devman_handle_t *); 70 80 } usb_iface_t;
Note:
See TracChangeset
for help on using the changeset viewer.