Release 4.16 drivers/usb/chipidea/host.h
/* 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;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexander Shishkin | 16 | 100.00% | 2 | 100.00% |
Total | 16 | 100.00% | 2 | 100.00% |
static inline void ci_hdrc_host_destroy(struct ci_hdrc *ci)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Peter Chen | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
static void ci_hdrc_host_driver_init(void)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Peter Chen | 7 | 100.00% | 1 | 100.00% |
Total | 7 | 100.00% | 1 | 100.00% |
#endif
#endif /* __DRIVERS_USB_CHIPIDEA_HOST_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexander Shishkin | 41 | 54.67% | 2 | 40.00% |
Peter Chen | 33 | 44.00% | 2 | 40.00% |
Greg Kroah-Hartman | 1 | 1.33% | 1 | 20.00% |
Total | 75 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.