xhci-mvebu.h 428 B

12345678910111213141516171819202122
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (C) 2014 Marvell
  4. *
  5. * Gregory Clement <gregory.clement@free-electrons.com>
  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. #else
  13. static inline int xhci_mvebu_mbus_init_quirk(struct usb_hcd *hcd)
  14. {
  15. return 0;
  16. }
  17. #endif
  18. #endif /* __LINUX_XHCI_MVEBU_H */