Linux Audio

Check our new training course

Buildroot integration, development and maintenance

Need a Buildroot system for your embedded project?
Loading...
Note: File does not exist in v3.1.
 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)
 6void xhci_rzv2m_start(struct usb_hcd *hcd);
 7int xhci_rzv2m_init_quirk(struct usb_hcd *hcd);
 8#else
 9static inline void xhci_rzv2m_start(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 */