mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00:00
884c274408
Remove empty function renesas_xhci_pci_exit() that does not actually do anything. Cc: Mathias Nyman <mathias.nyman@intel.com> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Vinod Koul <vkoul@kernel.org> Signed-off-by: Moritz Fischer <mdf@kernel.org> Link: https://lore.kernel.org/r/20210718015111.389719-3-mdf@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
26 lines
466 B
C
26 lines
466 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);
|
|
|
|
#else
|
|
static int renesas_xhci_check_request_fw(struct pci_dev *dev,
|
|
const struct pci_device_id *id)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#endif
|
|
|
|
struct xhci_driver_data {
|
|
u64 quirks;
|
|
const char *firmware;
|
|
};
|
|
|
|
#endif
|