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


Ignore:
Timestamp:
2017-08-17T15:25:09Z (7 years ago)
Author:
Petr Manek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c0ec9e7
Parents:
d967aa1
Message:

Added cast to make compiler happy.

File:
1 edited

Legend:

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

    rd967aa1 re4001f7  
    9898            hc->speeds[port_speed_id].tx_bps);
    9999        XHCI_EP_MAX_BURST_SIZE_SET(ictx->endpoint_ctx[0], 0);
    100         XHCI_EP_TR_DPTR_SET(ictx->endpoint_ctx[0], addr_to_phys(ep_ring->dequeue));
     100        XHCI_EP_TR_DPTR_SET(ictx->endpoint_ctx[0],
     101                addr_to_phys((void *)ep_ring->dequeue));
    101102        XHCI_EP_DCS_SET(ictx->endpoint_ctx[0], 1);
    102103        XHCI_EP_INTERVAL_SET(ictx->endpoint_ctx[0], 0);
Note: See TracChangeset for help on using the changeset viewer.