Ignore:
Timestamp:
2014-01-24T03:24:54Z (10 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
dc44023
Parents:
4e732f1a
Message:

ehci: implement toggle bit manipulation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ehci/ehci_endpoint.c

    r4e732f1a r42de21a  
    3535#include <assert.h>
    3636#include <stdlib.h>
     37#include <usb/debug.h>
    3738
    3839#include "utils/malloc32.h"
     
    5051        assert(instance);
    5152        assert(instance->qh);
    52 //      qh_toggle_set(instance->qh, toggle);
     53        if (qh_toggle_from_td(instance->qh))
     54                usb_log_warning("Setting toggle bit for transfer directed EP\n");
     55        qh_toggle_set(instance->qh, toggle);
    5356}
    5457
     
    6366        assert(instance);
    6467        assert(instance->qh);
    65         return 0;
    66 //      return qh_toggle_get(instance->qh);
     68        if (qh_toggle_from_td(instance->qh))
     69                usb_log_warning("Reading useless toggle bit\n");
     70        return qh_toggle_get(instance->qh);
    6771}
    6872
Note: See TracChangeset for help on using the changeset viewer.