Changes in uspace/srv/hid/char_mouse/chardev.c [9934f7d:79ae36dd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/char_mouse/chardev.c
r9934f7d r79ae36dd 45 45 #include <mouse_port.h> 46 46 47 static void chardev_events(ipc_callid_t iid, ipc_call_t *icall , void *arg);47 static void chardev_events(ipc_callid_t iid, ipc_call_t *icall); 48 48 49 49 static int dev_phone; … … 69 69 70 70 /* NB: The callback connection is slotted for removal */ 71 if (async_obsolete_connect_to_me(dev_phone, 0, 0, 0, chardev_events, 72 NULL) != 0) { 71 if (async_obsolete_connect_to_me(dev_phone, 0, 0, 0, chardev_events) != 0) { 73 72 printf(NAME ": Failed to create callback from device\n"); 74 73 return false; … … 91 90 } 92 91 93 static void chardev_events(ipc_callid_t iid, ipc_call_t *icall , void *arg)92 static void chardev_events(ipc_callid_t iid, ipc_call_t *icall) 94 93 { 95 94 /* Ignore parameters, the connection is already opened */
Note:
See TracChangeset
for help on using the changeset viewer.