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>
This commit is contained in:
@@ -246,13 +246,13 @@ int rtc_register(rtc_task_t *task);
|
||||
int rtc_unregister(rtc_task_t *task);
|
||||
int rtc_control(rtc_task_t *t, unsigned int cmd, unsigned long arg);
|
||||
|
||||
void rtctimer_enqueue(struct rtc_device *rtc, struct rtc_timer *timer);
|
||||
void rtctimer_remove(struct rtc_device *rtc, struct rtc_timer *timer);
|
||||
void rtctimer_init(struct rtc_timer *timer, void (*f)(void* p), void* data);
|
||||
int rtctimer_start(struct rtc_device *rtc, struct rtc_timer* timer,
|
||||
void rtc_timer_enqueue(struct rtc_device *rtc, struct rtc_timer *timer);
|
||||
void rtc_timer_remove(struct rtc_device *rtc, struct rtc_timer *timer);
|
||||
void rtc_timer_init(struct rtc_timer *timer, void (*f)(void* p), void* data);
|
||||
int rtc_timer_start(struct rtc_device *rtc, struct rtc_timer* timer,
|
||||
ktime_t expires, ktime_t period);
|
||||
int rtctimer_cancel(struct rtc_device *rtc, struct rtc_timer* timer);
|
||||
void rtctimer_do_work(struct work_struct *work);
|
||||
int rtc_timer_cancel(struct rtc_device *rtc, struct rtc_timer* timer);
|
||||
void rtc_timer_do_work(struct work_struct *work);
|
||||
|
||||
static inline bool is_leap_year(unsigned int year)
|
||||
{
|
||||
|
Reference in New Issue
Block a user