Export the xhci_pci_setup(), xhci_pci_probe() xhci_pci_remove(), xhci_pci_suspend() and xhci_pci_resume() functions as they would be used by renesas-xhci driver. Signed-off-by: Vinod Koul <vkoul@kernel.org> Signed-off-by: John Stultz <john.stultz@linaro.org> Change-Id: I4fb2088f95925c2e09a4e308618bd46156642df6 Bug: 146449535 Link: https://lore.kernel.org/linux-arm-msm/20200113084005.849071-2-vkoul@kernel.org/
19 lines
409 B
C
19 lines
409 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (C) 2008 Intel Corp. */
|
|
|
|
#ifndef XHCI_PCI_H
|
|
#define XHCI_PCI_H
|
|
|
|
int xhci_pci_setup(struct usb_hcd *hcd);
|
|
|
|
int xhci_pci_probe(struct pci_dev *pdev,
|
|
const struct pci_device_id *id);
|
|
|
|
void xhci_pci_remove(struct pci_dev *dev);
|
|
|
|
int xhci_pci_suspend(struct usb_hcd *hcd, bool do_wakeup);
|
|
|
|
int xhci_pci_resume(struct usb_hcd *hcd, bool hibernated);
|
|
|
|
#endif
|