mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Otherwise, there is a build warning if this header file is included by non host source file, eg, otg.c. Signed-off-by: Jun Li <jun.li@nxp.com> Signed-off-by: Peter Chen <peter.chen@nxp.com> Link: https://lore.kernel.org/r/20200122014639.22667-3-peter.chen@nxp.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			534 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			534 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
#ifndef __DRIVERS_USB_CHIPIDEA_HOST_H
 | 
						|
#define __DRIVERS_USB_CHIPIDEA_HOST_H
 | 
						|
 | 
						|
#ifdef CONFIG_USB_CHIPIDEA_HOST
 | 
						|
 | 
						|
int ci_hdrc_host_init(struct ci_hdrc *ci);
 | 
						|
void ci_hdrc_host_destroy(struct ci_hdrc *ci);
 | 
						|
void ci_hdrc_host_driver_init(void);
 | 
						|
 | 
						|
#else
 | 
						|
 | 
						|
static inline int ci_hdrc_host_init(struct ci_hdrc *ci)
 | 
						|
{
 | 
						|
	return -ENXIO;
 | 
						|
}
 | 
						|
 | 
						|
static inline void ci_hdrc_host_destroy(struct ci_hdrc *ci)
 | 
						|
{
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
static inline void ci_hdrc_host_driver_init(void)
 | 
						|
{
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* __DRIVERS_USB_CHIPIDEA_HOST_H */
 |