Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 1 | #ifndef __DRIVERS_USB_CHIPIDEA_HOST_H |
| 2 | #define __DRIVERS_USB_CHIPIDEA_HOST_H |
| 3 | |
| 4 | #ifdef CONFIG_USB_CHIPIDEA_HOST |
| 5 | |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 6 | int ci_hdrc_host_init(struct ci_hdrc *ci); |
Peter Chen | 3f124d2 | 2013-08-14 12:44:07 +0300 | [diff] [blame] | 7 | void ci_hdrc_host_destroy(struct ci_hdrc *ci); |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 8 | |
| 9 | #else |
| 10 | |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 11 | static inline int ci_hdrc_host_init(struct ci_hdrc *ci) |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 12 | { |
| 13 | return -ENXIO; |
| 14 | } |
| 15 | |
Peter Chen | 3f124d2 | 2013-08-14 12:44:07 +0300 | [diff] [blame] | 16 | static inline void ci_hdrc_host_destroy(struct ci_hdrc *ci) |
| 17 | { |
| 18 | |
| 19 | } |
| 20 | |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 21 | #endif |
| 22 | |
| 23 | #endif /* __DRIVERS_USB_CHIPIDEA_HOST_H */ |