Changeset 3e37964 in mainline for uspace/drv/uhci-hcd/iface.c


Ignore:
Timestamp:
2011-03-06T17:39:23Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
98807e16
Parents:
edb5f837
Message:

Use toggle tracking

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci-hcd/iface.c

    redb5f837 r3e37964  
    117117        if (!batch)
    118118                return ENOMEM;
    119         batch_interrupt_out(batch);
     119        batch_interrupt_out(batch, &hc->device_manager);
    120120        return EOK;
    121121}
     
    136136        if (!batch)
    137137                return ENOMEM;
    138         batch_interrupt_in(batch);
     138        batch_interrupt_in(batch, &hc->device_manager);
    139139        return EOK;
    140140}
     
    156156        if (!batch)
    157157                return ENOMEM;
    158         batch_bulk_out(batch);
     158        batch_bulk_out(batch, &hc->device_manager);
    159159        return EOK;
    160160}
     
    175175        if (!batch)
    176176                return ENOMEM;
    177         batch_bulk_in(batch);
     177        batch_bulk_in(batch, &hc->device_manager);
    178178        return EOK;
    179179}
Note: See TracChangeset for help on using the changeset viewer.