Changeset 41811af in mainline for uspace/srv/hw/char/i8042/i8042.c
- Timestamp:
- 2011-06-10T10:14:26Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ab547063
- Parents:
- 9536e6e (diff), 390d80d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/char/i8042/i8042.c
r9536e6e r41811af 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.