Changes in uspace/srv/hw/char/i8042/i8042.c [ffa2c8ef:79ae36dd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/char/i8042/i8042.c
rffa2c8ef r79ae36dd 41 41 #include <devmap.h> 42 42 #include <async.h> 43 #include <async_obsolete.h> 43 44 #include <unistd.h> 44 45 #include <sysinfo.h> … … 46 47 #include <errno.h> 47 48 #include <inttypes.h> 48 49 49 #include "i8042.h" 50 51 // FIXME: remove this header 52 #include <kernel/ipc/ipc_methods.h> 50 53 51 54 #define NAME "i8042" … … 247 250 callid = async_get_call(&call); 248 251 method = IPC_GET_IMETHOD(call); 249 switch (method) {250 case IPC_M_PHONE_HUNGUP:252 253 if (!method) { 251 254 /* The other side has hung up. */ 252 255 async_answer_0(callid, EOK); 253 256 return; 257 } 258 259 switch (method) { 254 260 case IPC_M_CONNECT_TO_ME: 255 261 printf(NAME ": creating callback connection\n"); … … 300 306 301 307 if (i8042_port[devid].client_phone != -1) { 302 async_ msg_1(i8042_port[devid].client_phone,308 async_obsolete_msg_1(i8042_port[devid].client_phone, 303 309 IPC_FIRST_USER_METHOD, data); 304 310 }
Note:
See TracChangeset
for help on using the changeset viewer.