From a614ac810150ae28355d4a6b4239f1834d13a68d Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Sat, 10 Aug 2019 22:48:01 -0400 Subject: [PATCH] XHCI: Remove unused and unnecessary data structure definitions. --- src/add-ons/kernel/busses/usb/xhci_hardware.h | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/add-ons/kernel/busses/usb/xhci_hardware.h b/src/add-ons/kernel/busses/usb/xhci_hardware.h index 2e3a085b0f..711bfcb8fb 100644 --- a/src/add-ons/kernel/busses/usb/xhci_hardware.h +++ b/src/add-ons/kernel/busses/usb/xhci_hardware.h @@ -319,19 +319,6 @@ struct xhci_trb { } __attribute__((__aligned__(4))); -struct xhci_segment { - xhci_trb * trbs; - xhci_segment * next; -}; - - -struct xhci_ring { - xhci_segment * first_seg; - xhci_trb * enqueue; - xhci_trb * dequeue; -}; - - // Section 6.5 struct xhci_erst_element { uint64 rs_addr;