Changeset 8e7c9fe in mainline for uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c
- Timestamp:
- 2014-09-12T03:45:25Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c53b58e
- Parents:
- 3eb0c85 (diff), 105d8d6 (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/hid/s3c24xx_ts/s3c24xx_ts.c
r3eb0c85 r8e7c9fe 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.