RTC: replace some newly-introduced macros with inlines
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
7ca1d488ff
commit
61a7c36acb
1 changed files with 35 additions and 11 deletions
|
@ -7,22 +7,38 @@ extern void rtc_dev_del_device(struct rtc_device *rtc);
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#define rtc_dev_init() do{}while(0)
|
static inline void rtc_dev_init(void)
|
||||||
#define rtc_dev_exit() do{}while(0)
|
{
|
||||||
#define rtc_dev_add_device(r) do{}while(0)
|
}
|
||||||
#define rtc_dev_del_device(r) do{}while(0)
|
|
||||||
|
static inline void rtc_dev_exit(void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void rtc_dev_add_device(struct rtc_device *rtc)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void rtc_dev_del_device(struct rtc_device *rtc)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_RTC_INTF_PROC
|
#ifdef CONFIG_RTC_INTF_PROC
|
||||||
|
|
||||||
void rtc_proc_add_device(struct rtc_device *rtc);
|
extern void rtc_proc_add_device(struct rtc_device *rtc);
|
||||||
void rtc_proc_del_device(struct rtc_device *rtc);
|
extern void rtc_proc_del_device(struct rtc_device *rtc);
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#define rtc_proc_add_device(r) do{}while(0)
|
static inline void rtc_proc_add_device(struct rtc_device *rtc)
|
||||||
#define rtc_proc_del_device(r) do{}while(0)
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void rtc_proc_del_device(struct rtc_device *rtc)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -34,8 +50,16 @@ extern void rtc_sysfs_del_device(struct rtc_device *rtc);
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#define rtc_sysfs_init(c) do{}while(0)
|
static inline void rtc_sysfs_init(struct class *rtc)
|
||||||
#define rtc_sysfs_add_device(r) do{}while(0)
|
{
|
||||||
#define rtc_sysfs_del_device(r) do{}while(0)
|
}
|
||||||
|
|
||||||
|
static inline void rtc_sysfs_add_device(struct rtc_device *rtc)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void rtc_sysfs_del_device(struct rtc_device *rtc)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue