Changes in uspace/drv/hid/adb-mouse/adb-mouse.c [a2afd8f:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/hid/adb-mouse/adb-mouse.c
ra2afd8f rb7fd2a0 97 97 ipc_callid_t callid = async_get_call(&call); 98 98 99 int retval = EOK;99 errno_t retval = EOK; 100 100 101 101 if (!IPC_GET_IMETHOD(call)) { … … 117 117 118 118 /** Add ADB mouse device */ 119 int adb_mouse_add(adb_mouse_t *mouse)120 { 121 int rc;119 errno_t adb_mouse_add(adb_mouse_t *mouse) 120 { 121 errno_t rc; 122 122 bool bound = false; 123 123 … … 188 188 189 189 /** Remove ADB mouse device */ 190 int adb_mouse_remove(adb_mouse_t *con)190 errno_t adb_mouse_remove(adb_mouse_t *con) 191 191 { 192 192 return ENOTSUP; … … 194 194 195 195 /** ADB mouse device gone */ 196 int adb_mouse_gone(adb_mouse_t *con)196 errno_t adb_mouse_gone(adb_mouse_t *con) 197 197 { 198 198 return ENOTSUP;
Note:
See TracChangeset
for help on using the changeset viewer.