Changeset 8820544 in mainline for uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c
- Timestamp:
- 2014-08-16T00:02:04Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 35b8bfe, 8cd680c
- Parents:
- 83f29e0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c
r83f29e0 r8820544 72 72 static void s3c24xx_ts_connection(ipc_callid_t iid, ipc_call_t *icall, 73 73 void *arg); 74 static void s3c24xx_ts_irq_handler(ipc_callid_t iid, ipc_call_t *call );74 static void s3c24xx_ts_irq_handler(ipc_callid_t iid, ipc_call_t *call, void *); 75 75 static void s3c24xx_ts_pen_down(s3c24xx_ts_t *ts); 76 76 static void s3c24xx_ts_pen_up(s3c24xx_ts_t *ts); … … 138 138 (void *) ts->paddr, inr); 139 139 140 async_ set_interrupt_received(s3c24xx_ts_irq_handler);141 irq_register(inr, device_assign_devno(), 0, &ts_irq_code);140 async_irq_subscribe(inr, device_assign_devno(), s3c24xx_ts_irq_handler, 141 NULL, &ts_irq_code); 142 142 143 143 s3c24xx_ts_wait_for_int_mode(ts, updn_down); … … 204 204 205 205 /** Handle touchscreen interrupt */ 206 static void s3c24xx_ts_irq_handler(ipc_callid_t iid, ipc_call_t *call) 206 static void s3c24xx_ts_irq_handler(ipc_callid_t iid, ipc_call_t *call, 207 void *arg) 207 208 { 208 209 ts_updn_t updn;
Note:
See TracChangeset
for help on using the changeset viewer.