Changeset 1fd2f81 in mainline
- Timestamp:
- 2017-10-19T20:02:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1a9a72a
- Parents:
- 0f6b50f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/main.c
r0f6b50f r1fd2f81 51 51 static int hcd_claim(hcd_t *, ddf_dev_t *); 52 52 static int hcd_start(hcd_t *, bool); 53 static int hcd_setup_root_hub(hcd_t *, ddf_dev_t *);54 53 static int hcd_status(hcd_t *, uint32_t *); 55 54 static void hcd_interrupt(hcd_t *, uint32_t); … … 63 62 .claim = hcd_claim, 64 63 .start = hcd_start, 65 .setup_root_hub = hcd_setup_root_hub,64 .setup_root_hub = NULL, 66 65 .fini = hc_driver_fini, 67 66 .ops = { … … 117 116 118 117 return hc_start(hc, irq); 119 }120 121 static int hcd_setup_root_hub(hcd_t *hcd, ddf_dev_t *dev)122 {123 xhci_hc_t *hc = hcd_get_driver_data(hcd);124 assert(hc);125 126 return EOK;127 118 } 128 119
Note:
See TracChangeset
for help on using the changeset viewer.