Ignore:
Timestamp:
2014-09-12T03:45:25Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
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.
Message:

merge mainline changes

most usb changes were reverted. blink and usbmass were fixed
known problems:
ehci won't initialize
usbmast asserts on unmount (happens on mainline too)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c

    r3eb0c85 r8e7c9fe  
    7272static void s3c24xx_ts_connection(ipc_callid_t iid, ipc_call_t *icall,
    7373    void *arg);
    74 static void s3c24xx_ts_irq_handler(ipc_callid_t iid, ipc_call_t *call);
     74static void s3c24xx_ts_irq_handler(ipc_callid_t iid, ipc_call_t *call, void *);
    7575static void s3c24xx_ts_pen_down(s3c24xx_ts_t *ts);
    7676static void s3c24xx_ts_pen_up(s3c24xx_ts_t *ts);
     
    138138            (void *) ts->paddr, inr);
    139139
    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);
    142142
    143143        s3c24xx_ts_wait_for_int_mode(ts, updn_down);
     
    204204
    205205/** Handle touchscreen interrupt */
    206 static void s3c24xx_ts_irq_handler(ipc_callid_t iid, ipc_call_t *call)
     206static void s3c24xx_ts_irq_handler(ipc_callid_t iid, ipc_call_t *call,
     207    void *arg)
    207208{
    208209        ts_updn_t updn;
Note: See TracChangeset for help on using the changeset viewer.