Changes in uspace/drv/bus/usb/xhci/main.c [8300c72:b2dca8de] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/main.c
r8300c72 rb2dca8de 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda3 2 * Copyright (c) 2018 Ondrej Hlavaty, Petr Manek 4 3 * All rights reserved. … … 95 94 } 96 95 97 static errno_t hcd_hc_quiesce(hc_device_t *hcd)98 {99 xhci_hc_t *hc = hcd_to_hc(hcd);100 hc_quiesce(hc);101 return EOK;102 }103 104 96 static const hc_driver_t xhci_driver = { 105 97 .name = NAME, … … 111 103 .start = hcd_start, 112 104 .hc_gone = hcd_hc_gone, 113 .hc_quiesce = hcd_hc_quiesce114 105 }; 115 106
Note:
See TracChangeset
for help on using the changeset viewer.