forked from xuos/xiuos
Fix compilation issues
This commit is contained in:
parent
721763bb00
commit
398c2590c7
|
@ -2944,3 +2944,28 @@ void xhci_event_process(struct xhci_host *xhci) {
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Dump Port status */
|
||||||
|
void xhci_dump_port_status(uint32_t port, uint32_t portsc) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dump input context */
|
||||||
|
void xhci_dump_input_ctx( struct xhci_host *xhci, const struct xhci_endpoint *endpoint, const void *input) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dump Endpoint */
|
||||||
|
void xhci_dump_endpoint(const struct xhci_endpoint *ep) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dump endpoint context */
|
||||||
|
void xhci_dump_ep_ctx(const struct xhci_endpoint_context *ep) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dump TRB */
|
||||||
|
void xhci_dump_trbs(const union xhci_trb *trbs, unsigned int count) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dump slot context */
|
||||||
|
void xhci_dump_slot_ctx(const struct xhci_slot_context *const sc) {
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue