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 v3.8-rc5 17 lines 289 B view raw
1#ifndef __DRIVERS_USB_CHIPIDEA_HOST_H 2#define __DRIVERS_USB_CHIPIDEA_HOST_H 3 4#ifdef CONFIG_USB_CHIPIDEA_HOST 5 6int ci_hdrc_host_init(struct ci13xxx *ci); 7 8#else 9 10static inline int ci_hdrc_host_init(struct ci13xxx *ci) 11{ 12 return -ENXIO; 13} 14 15#endif 16 17#endif /* __DRIVERS_USB_CHIPIDEA_HOST_H */