Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.13-rc6 16 lines 400 B view raw
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 */