diff options
Diffstat (limited to 'drivers/usb/host/pci-quirks.h')
-rw-r--r-- | drivers/usb/host/pci-quirks.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/usb/host/pci-quirks.h b/drivers/usb/host/pci-quirks.h index 1564edfff6fe..b1002a8ef96f 100644 --- a/drivers/usb/host/pci-quirks.h +++ b/drivers/usb/host/pci-quirks.h | |||
@@ -1,7 +1,19 @@ | |||
1 | #ifndef __LINUX_USB_PCI_QUIRKS_H | 1 | #ifndef __LINUX_USB_PCI_QUIRKS_H |
2 | #define __LINUX_USB_PCI_QUIRKS_H | 2 | #define __LINUX_USB_PCI_QUIRKS_H |
3 | 3 | ||
4 | #ifdef CONFIG_PCI | ||
4 | void uhci_reset_hc(struct pci_dev *pdev, unsigned long base); | 5 | void uhci_reset_hc(struct pci_dev *pdev, unsigned long base); |
5 | int uhci_check_and_reset_hc(struct pci_dev *pdev, unsigned long base); | 6 | int uhci_check_and_reset_hc(struct pci_dev *pdev, unsigned long base); |
7 | int usb_amd_find_chipset_info(void); | ||
8 | void usb_amd_dev_put(void); | ||
9 | void usb_amd_quirk_pll_disable(void); | ||
10 | void usb_amd_quirk_pll_enable(void); | ||
11 | bool usb_is_intel_switchable_xhci(struct pci_dev *pdev); | ||
12 | void usb_enable_xhci_ports(struct pci_dev *xhci_pdev); | ||
13 | #else | ||
14 | static inline void usb_amd_quirk_pll_disable(void) {} | ||
15 | static inline void usb_amd_quirk_pll_enable(void) {} | ||
16 | static inline void usb_amd_dev_put(void) {} | ||
17 | #endif /* CONFIG_PCI */ | ||
6 | 18 | ||
7 | #endif /* __LINUX_USB_PCI_QUIRKS_H */ | 19 | #endif /* __LINUX_USB_PCI_QUIRKS_H */ |