xhci-pci.h (762f99f4f3cb41a775b5157dd761217beba65873) | xhci-pci.h (25f51b76f90f10f9bf2fbc05fc51cf685da7ccad) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* Copyright (C) 2019-2020 Linaro Limited */ 3 4#ifndef XHCI_PCI_H 5#define XHCI_PCI_H 6 | 1/* SPDX-License-Identifier: GPL-2.0 */ 2/* Copyright (C) 2019-2020 Linaro Limited */ 3 4#ifndef XHCI_PCI_H 5#define XHCI_PCI_H 6 |
7#if IS_ENABLED(CONFIG_USB_XHCI_PCI_RENESAS) 8int renesas_xhci_check_request_fw(struct pci_dev *dev, 9 const struct pci_device_id *id); | 7int xhci_pci_common_probe(struct pci_dev *dev, const struct pci_device_id *id); 8void xhci_pci_remove(struct pci_dev *dev); |
10 | 9 |
11#else 12static int renesas_xhci_check_request_fw(struct pci_dev *dev, 13 const struct pci_device_id *id) 14{ 15 return 0; 16} 17 | |
18#endif | 10#endif |
19 20struct xhci_driver_data { 21 u64 quirks; 22 const char *firmware; 23}; 24 25#endif | |