Changeset 6a44ee4 in mainline for uspace/srv/hw/char/i8042/i8042.c
- Timestamp:
- 2011-07-20T15:26:21Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- efcebe1
- Parents:
- 25bef0ff (diff), a701812 (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
r25bef0ff r6a44ee4 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" … … 119 122 120 123 static void i8042_irq_handler(ipc_callid_t iid, ipc_call_t *call); 121 static void i8042_connection(ipc_callid_t iid, ipc_call_t *icall );124 static void i8042_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg); 122 125 static int i8042_init(void); 123 126 static void i8042_port_write(int devid, uint8_t data); … … 213 216 214 217 /** Character device connection handler */ 215 static void i8042_connection(ipc_callid_t iid, ipc_call_t *icall )218 static void i8042_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg) 216 219 { 217 220 ipc_callid_t callid; … … 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.