Staging
v0.7.0
https://github.com/torvalds/linux
Raw File
Tip revision: 949db153b6466c6f7cad5a427ecea94985927311 authored by Linus Torvalds on 25 January 2013, 19:57:28 UTC
Linux 3.8-rc5
Tip revision: 949db15
host.h
#ifndef __DRIVERS_USB_CHIPIDEA_HOST_H
#define __DRIVERS_USB_CHIPIDEA_HOST_H

#ifdef CONFIG_USB_CHIPIDEA_HOST

int ci_hdrc_host_init(struct ci13xxx *ci);

#else

static inline int ci_hdrc_host_init(struct ci13xxx *ci)
{
	return -ENXIO;
}

#endif

#endif /* __DRIVERS_USB_CHIPIDEA_HOST_H */
back to top