Release 4.11 drivers/rtc/rtc-core.h
#ifdef CONFIG_RTC_INTF_DEV
extern void __init rtc_dev_init(void);
extern void __exit rtc_dev_exit(void);
extern void rtc_dev_prepare(struct rtc_device *rtc);
extern void rtc_dev_add_device(struct rtc_device *rtc);
extern void rtc_dev_del_device(struct rtc_device *rtc);
#else
static inline void rtc_dev_init(void)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Brownell | 8 | 100.00% | 2 | 100.00% |
Total | 8 | 100.00% | 2 | 100.00% |
static inline void rtc_dev_exit(void)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Brownell | 8 | 100.00% | 2 | 100.00% |
Total | 8 | 100.00% | 2 | 100.00% |
static inline void rtc_dev_prepare(struct rtc_device *rtc)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Brownell | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
static inline void rtc_dev_add_device(struct rtc_device *rtc)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Brownell | 11 | 100.00% | 2 | 100.00% |
Total | 11 | 100.00% | 2 | 100.00% |
static inline void rtc_dev_del_device(struct rtc_device *rtc)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Brownell | 11 | 100.00% | 2 | 100.00% |
Total | 11 | 100.00% | 2 | 100.00% |
#endif
#ifdef CONFIG_RTC_INTF_PROC
extern void rtc_proc_add_device(struct rtc_device *rtc);
extern void rtc_proc_del_device(struct rtc_device *rtc);
#else
static inline void rtc_proc_add_device(struct rtc_device *rtc)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Brownell | 11 | 100.00% | 2 | 100.00% |
Total | 11 | 100.00% | 2 | 100.00% |
static inline void rtc_proc_del_device(struct rtc_device *rtc)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Brownell | 11 | 100.00% | 2 | 100.00% |
Total | 11 | 100.00% | 2 | 100.00% |
#endif
#ifdef CONFIG_RTC_INTF_SYSFS
const struct attribute_group **rtc_get_dev_attribute_groups(void);
#else
static inline const struct attribute_group **rtc_get_dev_attribute_groups(void)
{
return NULL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dmitry Torokhov | 9 | 56.25% | 1 | 33.33% |
David Brownell | 7 | 43.75% | 2 | 66.67% |
Total | 16 | 100.00% | 3 | 100.00% |
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Brownell | 171 | 92.93% | 5 | 83.33% |
Dmitry Torokhov | 13 | 7.07% | 1 | 16.67% |
Total | 184 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.