Changeset eed4139 in mainline for uspace/drv/hid/usbhid
- Timestamp:
- 2018-03-22T23:23:18Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cbb37b6
- Parents:
- 77f0a1d
- Location:
- uspace/drv/hid/usbhid
- Files:
-
- 3 edited
-
kbd/kbddev.c (modified) (1 diff)
-
mouse/mousedev.c (modified) (1 diff)
-
multimedia/multimedia.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/hid/usbhid/kbd/kbddev.c
r77f0a1d reed4139 156 156 * KBDEV_SET_IND sets LED keyboard indicators. 157 157 * 158 * @param fun Device function handling the call. 159 * @param icall_handle Call id. 160 * @param icall Call data. 161 */ 162 static void default_connection_handler(ddf_fun_t *fun, 163 cap_call_handle_t icall_handle, ipc_call_t *icall) 158 * @param fun Device function handling the call. 159 * @param icall_handle Call handle. 160 * @param icall Call data. 161 */ 162 static void 163 default_connection_handler(ddf_fun_t *fun, cap_call_handle_t icall_handle, 164 ipc_call_t *icall) 164 165 { 165 166 const sysarg_t method = IPC_GET_IMETHOD(*icall); -
uspace/drv/hid/usbhid/mouse/mousedev.c
r77f0a1d reed4139 109 109 /** Default handler for IPC methods not handled by DDF. 110 110 * 111 * @param fun Device function handling the call. 112 * @param icall_handle Call id. 113 * @param icall Call data. 114 */ 115 static void default_connection_handler(ddf_fun_t *fun, 116 cap_call_handle_t icall_handle, ipc_call_t *icall) 111 * @param fun Device function handling the call. 112 * @param icall_handle Call handle. 113 * @param icall Call data. 114 */ 115 static void 116 default_connection_handler(ddf_fun_t *fun, cap_call_handle_t icall_handle, 117 ipc_call_t *icall) 117 118 { 118 119 usb_mouse_t *mouse_dev = ddf_fun_data_get(fun); -
uspace/drv/hid/usbhid/multimedia/multimedia.c
r77f0a1d reed4139 80 80 * later use by the driver to notify about key events. 81 81 * 82 * @param fun Device function handling the call. 83 * @param icall_handle Call id. 84 * @param icall Call data. 85 */ 86 static void default_connection_handler(ddf_fun_t *fun, 87 cap_call_handle_t icall_handle, ipc_call_t *icall) 82 * @param fun Device function handling the call. 83 * @param icall_handle Call handle. 84 * @param icall Call data. 85 */ 86 static void 87 default_connection_handler(ddf_fun_t *fun, cap_call_handle_t icall_handle, 88 ipc_call_t *icall) 88 89 { 89 90 usb_log_debug(NAME " default_connection_handler()");
Note:
See TracChangeset
for help on using the changeset viewer.
