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/hw/bus/cuda_adb/cuda_adb.c

    r3eb0c85 r8e7c9fe  
    5555static void cuda_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg);
    5656static int cuda_init(void);
    57 static void cuda_irq_handler(ipc_callid_t iid, ipc_call_t *call);
     57static void cuda_irq_handler(ipc_callid_t iid, ipc_call_t *call, void *arg);
    5858
    5959static void cuda_irq_listen(void);
     
    282282        cuda_irq_code.ranges[0].base = (uintptr_t) instance->cuda_physical;
    283283        cuda_irq_code.cmds[0].addr = (void *) &((cuda_t *) instance->cuda_physical)->ifr;
    284         async_set_interrupt_received(cuda_irq_handler);
    285         irq_register(10, device_assign_devno(), 0, &cuda_irq_code);
     284        async_irq_subscribe(10, device_assign_devno(), cuda_irq_handler, NULL,
     285            &cuda_irq_code);
    286286
    287287        /* Enable SR interrupt. */
     
    295295}
    296296
    297 static void cuda_irq_handler(ipc_callid_t iid, ipc_call_t *call)
     297static void cuda_irq_handler(ipc_callid_t iid, ipc_call_t *call, void *arg)
    298298{
    299299        uint8_t rbuf[CUDA_RCV_BUF_SIZE];
Note: See TracChangeset for help on using the changeset viewer.