2007-05-08 15:33:27 +08:00
|
|
|
#ifdef CONFIG_RTC_INTF_DEV
|
|
|
|
|
|
|
|
extern void __init rtc_dev_init(void);
|
|
|
|
extern void __exit rtc_dev_exit(void);
|
2007-05-08 15:33:46 +08:00
|
|
|
extern void rtc_dev_prepare(struct rtc_device *rtc);
|
2007-05-08 15:33:27 +08:00
|
|
|
extern void rtc_dev_add_device(struct rtc_device *rtc);
|
|
|
|
extern void rtc_dev_del_device(struct rtc_device *rtc);
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2007-05-08 15:33:45 +08:00
|
|
|
static inline void rtc_dev_init(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void rtc_dev_exit(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-05-08 15:33:46 +08:00
|
|
|
static inline void rtc_dev_prepare(struct rtc_device *rtc)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-05-08 15:33:45 +08:00
|
|
|
static inline void rtc_dev_add_device(struct rtc_device *rtc)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void rtc_dev_del_device(struct rtc_device *rtc)
|
|
|
|
{
|
|
|
|
}
|
2007-05-08 15:33:27 +08:00
|
|
|
|
|
|
|
#endif
|
2007-05-08 15:33:33 +08:00
|
|
|
|
2007-05-08 15:33:38 +08:00
|
|
|
#ifdef CONFIG_RTC_INTF_PROC
|
|
|
|
|
2007-05-08 15:33:45 +08:00
|
|
|
extern void rtc_proc_add_device(struct rtc_device *rtc);
|
|
|
|
extern void rtc_proc_del_device(struct rtc_device *rtc);
|
2007-05-08 15:33:38 +08:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2007-05-08 15:33:45 +08: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 15:33:38 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2007-05-08 15:33:33 +08:00
|
|
|
#ifdef CONFIG_RTC_INTF_SYSFS
|
2015-07-24 07:01:08 +08:00
|
|
|
const struct attribute_group **rtc_get_dev_attribute_groups(void);
|
2007-05-08 15:33:33 +08:00
|
|
|
#else
|
2015-07-24 07:01:08 +08:00
|
|
|
static inline const struct attribute_group **rtc_get_dev_attribute_groups(void)
|
2007-05-08 15:33:45 +08:00
|
|
|
{
|
2015-07-24 07:01:08 +08:00
|
|
|
return NULL;
|
2007-05-08 15:33:45 +08:00
|
|
|
}
|
2007-05-08 15:33:33 +08:00
|
|
|
#endif
|