Mention branches and keyring.
[releases.git] / host / xhci-rzv2m.h
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
9 static inline void xhci_rzv2m_start(struct usb_hcd *hcd) {}
10 static inline int xhci_rzv2m_init_quirk(struct usb_hcd *hcd)
11 {
12         return -EINVAL;
13 }
14 #endif
15
16 #endif /* __XHCI_RZV2M_H */