xhci.h (8dfec6140fc617b932cf9a09ba46d0ee3f3a7d87) xhci.h (3429e91a661e1f383aecc86c6bbcf65afb15c892)
1/*
2 * xHCI host controller driver
3 *
4 * Copyright (C) 2008 Intel Corp.
5 *
6 * Author: Sarah Sharp
7 * Some code borrowed from the Linux EHCI driver.
8 *

--- 1649 unchanged lines hidden (view full) ---

1658/* xHCI PCI glue */
1659int xhci_register_pci(void);
1660void xhci_unregister_pci(void);
1661#else
1662static inline int xhci_register_pci(void) { return 0; }
1663static inline void xhci_unregister_pci(void) {}
1664#endif
1665
1/*
2 * xHCI host controller driver
3 *
4 * Copyright (C) 2008 Intel Corp.
5 *
6 * Author: Sarah Sharp
7 * Some code borrowed from the Linux EHCI driver.
8 *

--- 1649 unchanged lines hidden (view full) ---

1658/* xHCI PCI glue */
1659int xhci_register_pci(void);
1660void xhci_unregister_pci(void);
1661#else
1662static inline int xhci_register_pci(void) { return 0; }
1663static inline void xhci_unregister_pci(void) {}
1664#endif
1665
1666#if defined(CONFIG_USB_XHCI_PLATFORM) \
1667 || defined(CONFIG_USB_XHCI_PLATFORM_MODULE)
1668int xhci_register_plat(void);
1669void xhci_unregister_plat(void);
1670#else
1671static inline int xhci_register_plat(void)
1672{ return 0; }
1673static inline void xhci_unregister_plat(void)
1674{ }
1675#endif
1676
1666/* xHCI host controller glue */
1667typedef void (*xhci_get_quirks_t)(struct device *, struct xhci_hcd *);
1668void xhci_quiesce(struct xhci_hcd *xhci);
1669int xhci_halt(struct xhci_hcd *xhci);
1670int xhci_reset(struct xhci_hcd *xhci);
1671int xhci_init(struct usb_hcd *hcd);
1672int xhci_run(struct usb_hcd *hcd);
1673void xhci_stop(struct usb_hcd *hcd);

--- 115 unchanged lines hidden ---
1677/* xHCI host controller glue */
1678typedef void (*xhci_get_quirks_t)(struct device *, struct xhci_hcd *);
1679void xhci_quiesce(struct xhci_hcd *xhci);
1680int xhci_halt(struct xhci_hcd *xhci);
1681int xhci_reset(struct xhci_hcd *xhci);
1682int xhci_init(struct usb_hcd *hcd);
1683int xhci_run(struct usb_hcd *hcd);
1684void xhci_stop(struct usb_hcd *hcd);

--- 115 unchanged lines hidden ---