1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __XHCI_RZV2M_H 3 #define __XHCI_RZV2M_H 4 5 #if IS_ENABLED(CONFIG_USB_XHCI_RZV2M) 6 void xhci_rzv2m_start(struct usb_hcd *hcd); 7 int xhci_rzv2m_init_quirk(struct usb_hcd *hcd); 8 #else xhci_rzv2m_start(struct usb_hcd * hcd)9static inline void xhci_rzv2m_start(struct usb_hcd *hcd) {} xhci_rzv2m_init_quirk(struct usb_hcd * hcd)10static inline int xhci_rzv2m_init_quirk(struct usb_hcd *hcd) 11 { 12 return -EINVAL; 13 } 14 #endif 15 16 #endif /* __XHCI_RZV2M_H */ 17