xhci-mvebu.h 568 B

123456789101112131415161718192021222324252627
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) 2014 Marvell
  4. *
  5. * Gregory Clement <[email protected]>
  6. */
  7. #ifndef __LINUX_XHCI_MVEBU_H
  8. #define __LINUX_XHCI_MVEBU_H
  9. struct usb_hcd;
  10. #if IS_ENABLED(CONFIG_USB_XHCI_MVEBU)
  11. int xhci_mvebu_mbus_init_quirk(struct usb_hcd *hcd);
  12. int xhci_mvebu_a3700_init_quirk(struct usb_hcd *hcd);
  13. #else
  14. static inline int xhci_mvebu_mbus_init_quirk(struct usb_hcd *hcd)
  15. {
  16. return 0;
  17. }
  18. static inline int xhci_mvebu_a3700_init_quirk(struct usb_hcd *hcd)
  19. {
  20. return 0;
  21. }
  22. #endif
  23. #endif /* __LINUX_XHCI_MVEBU_H */