You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
527 B
30 lines
527 B
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __DRIVERS_USB_CHIPIDEA_HOST_H
|
|
#define __DRIVERS_USB_CHIPIDEA_HOST_H
|
|
|
|
#ifdef CONFIG_USB_CHIPIDEA_HOST
|
|
|
|
int ci_hdrc_host_init(struct ci_hdrc *ci);
|
|
void ci_hdrc_host_destroy(struct ci_hdrc *ci);
|
|
void ci_hdrc_host_driver_init(void);
|
|
|
|
#else
|
|
|
|
static inline int ci_hdrc_host_init(struct ci_hdrc *ci)
|
|
{
|
|
return -ENXIO;
|
|
}
|
|
|
|
static inline void ci_hdrc_host_destroy(struct ci_hdrc *ci)
|
|
{
|
|
|
|
}
|
|
|
|
static void ci_hdrc_host_driver_init(void)
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* __DRIVERS_USB_CHIPIDEA_HOST_H */
|
|
|