Changeset d32d51d in mainline for uspace/drv/bus/usb/xhci/rh.c


Ignore:
Timestamp:
2017-08-20T12:01:35Z (7 years ago)
Author:
Petr Manek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
07c08ea
Parents:
5ff9e1d
Message:

Updated RH implementation with virtual hub emulation structure.

File:
1 edited

Legend:

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

    r5ff9e1d rd32d51d  
    4444#include "rh.h"
    4545
     46int xhci_rh_init(xhci_rh_t *rh)
     47{
     48        /* TODO: Implement me! */
     49        return EOK;
     50}
     51
    4652// TODO: Check device deallocation, we free device_ctx in hc.c, not
    4753//       sure about the other structs.
     
    221227}
    222228
     229int xhci_rh_schedule(xhci_rh_t *rh, usb_transfer_batch_t *batch)
     230{
     231        /* TODO: Implement me! */
     232        return EOK;
     233}
     234
     235int xhci_rh_fini(xhci_rh_t *rh)
     236{
     237        /* TODO: Implement me! */
     238        return EOK;
     239}
     240
    223241
    224242/**
Note: See TracChangeset for help on using the changeset viewer.