commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
29 lines
576 B
C
29 lines
576 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (C) 2019-2020 Linaro Limited */
|
|
|
|
#ifndef XHCI_PCI_H
|
|
#define XHCI_PCI_H
|
|
|
|
#if IS_ENABLED(CONFIG_USB_XHCI_PCI_RENESAS)
|
|
int renesas_xhci_check_request_fw(struct pci_dev *dev,
|
|
const struct pci_device_id *id);
|
|
void renesas_xhci_pci_exit(struct pci_dev *dev);
|
|
|
|
#else
|
|
static int renesas_xhci_check_request_fw(struct pci_dev *dev,
|
|
const struct pci_device_id *id)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static void renesas_xhci_pci_exit(struct pci_dev *dev) { };
|
|
|
|
#endif
|
|
|
|
struct xhci_driver_data {
|
|
u64 quirks;
|
|
const char *firmware;
|
|
};
|
|
|
|
#endif
|