xhci-pci.h 466 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* Copyright (C) 2019-2020 Linaro Limited */
  3. #ifndef XHCI_PCI_H
  4. #define XHCI_PCI_H
  5. #if IS_ENABLED(CONFIG_USB_XHCI_PCI_RENESAS)
  6. int renesas_xhci_check_request_fw(struct pci_dev *dev,
  7. const struct pci_device_id *id);
  8. #else
  9. static int renesas_xhci_check_request_fw(struct pci_dev *dev,
  10. const struct pci_device_id *id)
  11. {
  12. return 0;
  13. }
  14. #endif
  15. struct xhci_driver_data {
  16. u64 quirks;
  17. const char *firmware;
  18. };
  19. #endif