commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
31 lines
534 B
C
31 lines
534 B
C
/* 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 inline void ci_hdrc_host_driver_init(void)
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* __DRIVERS_USB_CHIPIDEA_HOST_H */
|