diff options
author | Sarah Sharp | 2011-06-28 15:50:19 -0700 |
---|---|---|
committer | Sarah Sharp | 2011-12-22 15:52:41 -0800 |
commit | 051031143544ff196d94927be8f384864fbca6a4 (patch) | |
tree | 0c9284450b8d2fd3485f1bfba3ace908d8d5ede9 /drivers/usb/host/xhci.h | |
parent | 1b41c8321e495337e877ca02d0b9680bc4112eff (diff) |
Trivial: xhci: Fix copy-paste error.
The xHCI driver will create an xhci_hcd structure, not an ehci_hci
structure.
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Diffstat (limited to 'drivers/usb/host/xhci.h')
-rw-r--r-- | drivers/usb/host/xhci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h index 3c8fbd2772ea..ecd2ad5d226d 100644 --- a/drivers/usb/host/xhci.h +++ b/drivers/usb/host/xhci.h @@ -1356,7 +1356,7 @@ static inline unsigned int hcd_index(struct usb_hcd *hcd) return 1; } -/* There is one ehci_hci structure per controller */ +/* There is one xhci_hcd structure per controller */ struct xhci_hcd { struct usb_hcd *main_hcd; struct usb_hcd *shared_hcd; |