Changeset 09187c6e in mainline


Ignore:
Timestamp:
2018-01-21T22:59:52Z (6 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b3c39690
Parents:
36e8a0c8
Message:

xhci: fix off-by-one in rh

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/xhci/rh.c

    r36e8a0c8 r09187c6e  
    275275         * not cause an interrupt.
    276276         */
    277         for (uint8_t i = 1; i < rh->max_ports; ++i) {
     277        for (uint8_t i = 0; i < rh->max_ports; ++i) {
    278278                xhci_rh_handle_port_change(rh, i + 1);
    279279
Note: See TracChangeset for help on using the changeset viewer.