xref: /linux/drivers/usb/chipidea/host.h (revision 9e9f60108423f18a99c9cc93ef7f23490ecc709b)
1 #ifndef __DRIVERS_USB_CHIPIDEA_HOST_H
2 #define __DRIVERS_USB_CHIPIDEA_HOST_H
3 
4 #ifdef CONFIG_USB_CHIPIDEA_HOST
5 
6 int ci_hdrc_host_init(struct ci_hdrc *ci);
7 void ci_hdrc_host_destroy(struct ci_hdrc *ci);
8 
9 #else
10 
11 static inline int ci_hdrc_host_init(struct ci_hdrc *ci)
12 {
13 	return -ENXIO;
14 }
15 
16 static inline void ci_hdrc_host_destroy(struct ci_hdrc *ci)
17 {
18 
19 }
20 
21 #endif
22 
23 #endif /* __DRIVERS_USB_CHIPIDEA_HOST_H */
24