Changeset cf2af94 in mainline for uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c
- Timestamp:
- 2011-02-09T11:46:47Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cb15135a
- Parents:
- a49c4002 (diff), 0b37882 (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
-
TabularUnified uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c ¶
ra49c4002 rcf2af94 42 42 #include <io/console.h> 43 43 #include <vfs/vfs.h> 44 #include <ipc/ipc.h>45 44 #include <ipc/mouse.h> 46 45 #include <async.h> … … 102 101 rc = devmap_device_register(NAMESPACE "/mouse", &ts->devmap_handle); 103 102 if (rc != EOK) { 104 devmap_hangup_phone(DEVMAP_DRIVER);105 103 printf(NAME ": Unable to register device %s.\n", 106 104 NAMESPACE "/mouse"); … … 141 139 142 140 async_set_interrupt_received(s3c24xx_ts_irq_handler); 143 ipc_register_irq(inr, device_assign_devno(), 0, &ts_irq_code);141 register_irq(inr, device_assign_devno(), 0, &ts_irq_code); 144 142 145 143 s3c24xx_ts_wait_for_int_mode(ts, updn_down); … … 378 376 int retval; 379 377 380 ipc_answer_0(iid, EOK);378 async_answer_0(iid, EOK); 381 379 382 380 while (1) { 383 381 callid = async_get_call(&call); 384 switch (IPC_GET_ METHOD(call)) {382 switch (IPC_GET_IMETHOD(call)) { 385 383 case IPC_M_PHONE_HUNGUP: 386 384 if (ts->client_phone != -1) { 387 ipc_hangup(ts->client_phone);385 async_hangup(ts->client_phone); 388 386 ts->client_phone = -1; 389 387 } 390 388 391 ipc_answer_0(callid, EOK);389 async_answer_0(callid, EOK); 392 390 return; 393 391 case IPC_M_CONNECT_TO_ME: … … 402 400 retval = EINVAL; 403 401 } 404 ipc_answer_0(callid, retval);402 async_answer_0(callid, retval); 405 403 } 406 404 }
Note:
See TracChangeset
for help on using the changeset viewer.