Release 4.11 drivers/usb/chipidea/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 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 | 55.41% | 2 | 50.00% |
Peter Chen | 33 | 44.59% | 2 | 50.00% |
Total | 74 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.