2007-05-08 11:33:27 +04:00
|
|
|
#ifdef CONFIG_RTC_INTF_DEV
|
|
|
|
|
|
|
|
extern void __init rtc_dev_init(void);
|
|
|
|
extern void __exit rtc_dev_exit(void);
|
2007-05-08 11:33:46 +04:00
|
|
|
extern void rtc_dev_prepare(struct rtc_device *rtc);
|
2007-05-08 11:33:27 +04:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2007-05-08 11:33:45 +04:00
|
|
|
static inline void rtc_dev_init(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void rtc_dev_exit(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-05-08 11:33:46 +04:00
|
|
|
static inline void rtc_dev_prepare(struct rtc_device *rtc)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-05-08 11:33:27 +04:00
|
|
|
#endif
|
2007-05-08 11:33:33 +04:00
|
|
|
|
2007-05-08 11:33:38 +04:00
|
|
|
#ifdef CONFIG_RTC_INTF_PROC
|
|
|
|
|
2007-05-08 11:33:45 +04:00
|
|
|
extern void rtc_proc_add_device(struct rtc_device *rtc);
|
|
|
|
extern void rtc_proc_del_device(struct rtc_device *rtc);
|
2007-05-08 11:33:38 +04:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2007-05-08 11:33:45 +04:00
|
|
|
static inline void rtc_proc_add_device(struct rtc_device *rtc)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void rtc_proc_del_device(struct rtc_device *rtc)
|
|
|
|
{
|
|
|
|
}
|
2007-05-08 11:33:38 +04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2007-05-08 11:33:33 +04:00
|
|
|
#ifdef CONFIG_RTC_INTF_SYSFS
|
2015-07-24 02:01:08 +03:00
|
|
|
const struct attribute_group **rtc_get_dev_attribute_groups(void);
|
2007-05-08 11:33:33 +04:00
|
|
|
#else
|
2015-07-24 02:01:08 +03:00
|
|
|
static inline const struct attribute_group **rtc_get_dev_attribute_groups(void)
|
2007-05-08 11:33:45 +04:00
|
|
|
{
|
2015-07-24 02:01:08 +03:00
|
|
|
return NULL;
|
2007-05-08 11:33:45 +04:00
|
|
|
}
|
2007-05-08 11:33:33 +04:00
|
|
|
#endif
|
2017-07-06 12:42:02 +03:00
|
|
|
|
|
|
|
#ifdef CONFIG_RTC_NVMEM
|
|
|
|
void rtc_nvmem_register(struct rtc_device *rtc);
|
|
|
|
void rtc_nvmem_unregister(struct rtc_device *rtc);
|
|
|
|
#else
|
|
|
|
static inline void rtc_nvmem_register(struct rtc_device *rtc) {}
|
|
|
|
static inline void rtc_nvmem_unregister(struct rtc_device *rtc) {}
|
|
|
|
#endif
|