Contributors: 17
Author Tokens Token Proportion Commits Commit Proportion
Niklas Schnelle 54 19.85% 2 9.52%
Andiry Brienza 45 16.54% 1 4.76%
Joe Lee 43 15.81% 1 4.76%
Sage Sharp 24 8.82% 2 9.52%
Libin Yang 23 8.46% 2 9.52%
Manjunath Goudar 21 7.72% 1 4.76%
Jiahau Chang 13 4.78% 1 4.76%
Adrian Bunk 11 4.04% 1 4.76%
Konrad Zapalowicz 9 3.31% 1 4.76%
Huang Rui 8 2.94% 2 9.52%
Jeff Garzik 7 2.57% 1 4.76%
Moiz Sonasath 4 1.47% 1 4.76%
Randy Dunlap 3 1.10% 1 4.76%
Ryan Kennedy 2 0.74% 1 4.76%
yuan linyu 2 0.74% 1 4.76%
Linus Torvalds 2 0.74% 1 4.76%
Greg Kroah-Hartman 1 0.37% 1 4.76%
Total 272 21


/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __LINUX_USB_PCI_QUIRKS_H
#define __LINUX_USB_PCI_QUIRKS_H

#ifdef CONFIG_USB_PCI_AMD
int usb_hcd_amd_remote_wakeup_quirk(struct pci_dev *pdev);
bool usb_amd_hang_symptom_quirk(void);
bool usb_amd_prefetch_quirk(void);
void usb_amd_dev_put(void);
bool usb_amd_quirk_pll_check(void);
void usb_amd_quirk_pll_disable(void);
void usb_amd_quirk_pll_enable(void);
void sb800_prefetch(struct device *dev, int on);
bool usb_amd_pt_check_port(struct device *device, int port);
#else
static inline bool usb_amd_hang_symptom_quirk(void)
{
	return false;
};
static inline bool usb_amd_prefetch_quirk(void)
{
	return false;
}
static inline void usb_amd_quirk_pll_disable(void) {}
static inline void usb_amd_quirk_pll_enable(void) {}
static inline void usb_amd_dev_put(void) {}
static inline bool usb_amd_quirk_pll_check(void)
{
	return false;
}
static inline void sb800_prefetch(struct device *dev, int on) {}
static inline bool usb_amd_pt_check_port(struct device *device, int port)
{
	return false;
}
#endif /* CONFIG_USB_PCI_AMD */

#ifdef CONFIG_USB_PCI
void uhci_reset_hc(struct pci_dev *pdev, unsigned long base);
int uhci_check_and_reset_hc(struct pci_dev *pdev, unsigned long base);
void usb_asmedia_modifyflowcontrol(struct pci_dev *pdev);
void usb_enable_intel_xhci_ports(struct pci_dev *xhci_pdev);
void usb_disable_xhci_ports(struct pci_dev *xhci_pdev);
#else
struct pci_dev;
static inline void usb_asmedia_modifyflowcontrol(struct pci_dev *pdev) {}
static inline void usb_disable_xhci_ports(struct pci_dev *xhci_pdev) {}
#endif  /* CONFIG_USB_PCI */

#endif  /*  __LINUX_USB_PCI_QUIRKS_H  */