Changeset 4bfcf22 in mainline for uspace/drv/bus/usb/uhci/hc.c


Ignore:
Timestamp:
2014-01-18T22:01:10Z (10 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9f6cb910
Parents:
a5361fb
Message:

ehci,ohci,uhci: Remove interrupt handler wrappers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/uhci/hc.c

    ra5361fb r4bfcf22  
    146146/** Take action based on the interrupt cause.
    147147 *
    148  * @param[in] instance UHCI structure to use.
     148 * @param[in] hcd HCD structure to use.
    149149 * @param[in] status Value of the status register at the time of interrupt.
    150150 *
     
    154154 * - resume from suspend state (not implemented)
    155155 */
    156 void hc_interrupt(hc_t *instance, uint16_t status)
    157 {
     156void hc_interrupt(hcd_t *hcd, uint32_t status)
     157{
     158        assert(hcd);
     159        hc_t *instance = hcd->driver.data;
    158160        assert(instance);
    159161        /* Lower 2 bits are transaction error and transaction complete */
Note: See TracChangeset for help on using the changeset viewer.