Changeset fb38cbc in mainline


Ignore:
Timestamp:
2011-05-27T10:02:13Z (13 years ago)
Author:
Matus Dekanek <smekideki@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c8be56e
Parents:
848dafc (diff), e89bb50 (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:

minor fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/ohci/root_hub.c

    r848dafc rfb38cbc  
    505505        mask = port_status_change_mask;
    506506        for (port = 1; port <= instance->port_count; ++port) {
    507                 if (mask & instance->registers->rh_port_status[port - 1] != 0) {
     507                if ((mask & instance->registers->rh_port_status[port - 1]) != 0) {
    508508
    509509                        bitmap[(port) / 8] += 1 << (port % 8);
Note: See TracChangeset for help on using the changeset viewer.