blob: 058875c153334db7b0807a3cb2e0926b60c065e8 [file] [log] [blame]
Alexander Shishkineb70e5a2012-05-11 17:25:54 +03001#ifndef __DRIVERS_USB_CHIPIDEA_HOST_H
2#define __DRIVERS_USB_CHIPIDEA_HOST_H
3
4#ifdef CONFIG_USB_CHIPIDEA_HOST
5
Alexander Shishkin8e229782013-06-24 14:46:36 +03006int ci_hdrc_host_init(struct ci_hdrc *ci);
Alexander Shishkineb70e5a2012-05-11 17:25:54 +03007
8#else
9
Alexander Shishkin8e229782013-06-24 14:46:36 +030010static inline int ci_hdrc_host_init(struct ci_hdrc *ci)
Alexander Shishkineb70e5a2012-05-11 17:25:54 +030011{
12 return -ENXIO;
13}
14
15#endif
16
17#endif /* __DRIVERS_USB_CHIPIDEA_HOST_H */