Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* Copyright (C) 2019-2020 Linaro Limited */
0003 
0004 #ifndef XHCI_PCI_H
0005 #define XHCI_PCI_H
0006 
0007 #if IS_ENABLED(CONFIG_USB_XHCI_PCI_RENESAS)
0008 int renesas_xhci_check_request_fw(struct pci_dev *dev,
0009                   const struct pci_device_id *id);
0010 
0011 #else
0012 static int renesas_xhci_check_request_fw(struct pci_dev *dev,
0013                      const struct pci_device_id *id)
0014 {
0015     return 0;
0016 }
0017 
0018 #endif
0019 
0020 struct xhci_driver_data {
0021     u64 quirks;
0022     const char *firmware;
0023 };
0024 
0025 #endif