aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/rtc.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2010-12-13 16:45:48 -0500
committerThomas Gleixner <tglx@linutronix.de>2010-12-13 16:48:21 -0500
commit96c8f06a0fb359a9a89701a7afab6d837e466ab0 (patch)
tree038d92c31b95abfd5ab83428ab965de82548c4c9 /include/linux/rtc.h
parent042620a018afcfba1d678062b62e463b9e43a68d (diff)
rtc: Namespace fixup
rtctimer_* is already occupied by sound/core/rtctimer.c. Instead of fiddling with that, rename the new functions to rtc_timer_* which reads nicer anyway. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: John Stultz <johnstul@us.ibm.com>
Diffstat (limited to 'include/linux/rtc.h')
-rw-r--r--include/linux/rtc.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/linux/rtc.h b/include/linux/rtc.h
index 44e18a2523a3..3c995b4d742c 100644
--- a/include/linux/rtc.h
+++ b/include/linux/rtc.h
@@ -246,13 +246,13 @@ int rtc_register(rtc_task_t *task);
246int rtc_unregister(rtc_task_t *task); 246int rtc_unregister(rtc_task_t *task);
247int rtc_control(rtc_task_t *t, unsigned int cmd, unsigned long arg); 247int rtc_control(rtc_task_t *t, unsigned int cmd, unsigned long arg);
248 248
249void rtctimer_enqueue(struct rtc_device *rtc, struct rtc_timer *timer); 249void rtc_timer_enqueue(struct rtc_device *rtc, struct rtc_timer *timer);
250void rtctimer_remove(struct rtc_device *rtc, struct rtc_timer *timer); 250void rtc_timer_remove(struct rtc_device *rtc, struct rtc_timer *timer);
251void rtctimer_init(struct rtc_timer *timer, void (*f)(void* p), void* data); 251void rtc_timer_init(struct rtc_timer *timer, void (*f)(void* p), void* data);
252int rtctimer_start(struct rtc_device *rtc, struct rtc_timer* timer, 252int rtc_timer_start(struct rtc_device *rtc, struct rtc_timer* timer,
253 ktime_t expires, ktime_t period); 253 ktime_t expires, ktime_t period);
254int rtctimer_cancel(struct rtc_device *rtc, struct rtc_timer* timer); 254int rtc_timer_cancel(struct rtc_device *rtc, struct rtc_timer* timer);
255void rtctimer_do_work(struct work_struct *work); 255void rtc_timer_do_work(struct work_struct *work);
256 256
257static inline bool is_leap_year(unsigned int year) 257static inline bool is_leap_year(unsigned int year)
258{ 258{