Changeset 0f6b50f in mainline for uspace/drv/bus/usb/xhci/hc.c


Ignore:
Timestamp:
2017-10-19T20:00:08Z (7 years ago)
Author:
Petr Manek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1fd2f81
Parents:
60af4cdb
Message:

Added DDF device to HCD initialization to prepare RH data structures before it is started.

File:
1 edited

Legend:

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

    r60af4cdb r0f6b50f  
    187187}
    188188
    189 int hc_init_memory(xhci_hc_t *hc)
     189int hc_init_memory(xhci_hc_t *hc, ddf_dev_t *device)
    190190{
    191191        int err;
     
    216216                goto err_cmd;
    217217
    218         if ((err = xhci_rh_init(&hc->rh, hc)))
     218        if ((err = xhci_rh_init(&hc->rh, hc, device)))
    219219                goto err_transfers;
    220220
Note: See TracChangeset for help on using the changeset viewer.