Changeset cf5cbac4 in mainline for uspace/drv/bus
- Timestamp:
- 2018-01-09T17:01:49Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c386d6d
- Parents:
- c913f71e
- File:
- 
      - 1 edited
 
 - 
          
  uspace/drv/bus/usb/xhci/endpoint.c (modified) (1 diff)
 
Legend:
- Unmodified
- Added
- Removed
- 
      uspace/drv/bus/usb/xhci/endpoint.crc913f71e rcf5cbac4 485 485 xhci_endpoint_t *xhci_device_get_endpoint(xhci_device_t *dev, usb_endpoint_t ep) 486 486 { 487 return xhci_endpoint_get(dev->base.endpoints[ep]); 487 endpoint_t *ep_base = dev->base.endpoints[ep]; 488 if (!ep_base) 489 return NULL; 490 491 return xhci_endpoint_get(ep_base); 488 492 } 489 493 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
