// SPDX-License-Identifier: GPL-2.0 /* * xhci-plat.h - xHCI host controller driver platform Bus Glue. * * Copyright (C) 2015 Renesas Electronics Corporation */ #ifndef _XHCI_PLAT_H #define _XHCI_PLAT_H #include "xhci.h" /* for hcd_to_xhci() */ struct xhci_plat_priv { const char *firmware_name; void (*plat_start)(struct usb_hcd *); int (*init_quirk)(struct usb_hcd *); int (*resume_quirk)(struct usb_hcd *); }; #define hcd_to_xhci_priv(h) ((struct xhci_plat_priv *)hcd_to_xhci(h)->priv) #endif /* _XHCI_PLAT_H */Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yoshihiro Shimoda | 41 | 63.08% | 3 | 50.00% |
Felipe Balbi | 22 | 33.85% | 1 | 16.67% |
Greg Kroah-Hartman | 2 | 3.08% | 2 | 33.33% |
Total | 65 | 100.00% | 6 | 100.00% |