Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ohci/ohci.c

    rb5111c46 r8820544  
    5959/** IRQ handling callback, identifies device
    6060 *
    61  * @param[in] dev DDF instance of the device to use.
    6261 * @param[in] iid (Unused).
    6362 * @param[in] call Pointer to the call that represents interrupt.
    64  */
    65 static void irq_handler(ddf_dev_t *dev, ipc_callid_t iid, ipc_call_t *call)
     63 * @param[in] dev DDF instance of the device to use.
     64 *
     65 */
     66static void irq_handler(ipc_callid_t iid, ipc_call_t *call, ddf_dev_t *dev)
    6667{
    6768        assert(dev);
    68 
     69       
    6970        ohci_t *ohci = dev_to_ohci(dev);
    7071        if (!ohci) {
     
    7273                return;
    7374        }
     75       
    7476        const uint16_t status = IPC_GET_ARG1(*call);
    7577        hc_interrupt(&ohci->hc, status);
Note: See TracChangeset for help on using the changeset viewer.