Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 6995e2de6891c724bfeb2db33d7b87775f913ad1 authored by Linus Torvalds on 25 June 2023, 23:29:58 UTC
Linux 6.4
Tip revision: 6995e2d
xhci-pci.h
/* 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
back to top