Commit e329331a authored by Atsushi Nemoto's avatar Atsushi Nemoto Committed by Ralf Baechle

Remove mips_rtc_lock

    
The mips_rtc_lock is no longer needed because RTC operations should be
protected already by other mechanism. (rtc_lock, local_irq_save, etc.)
    
Also, locking whole rtc_get_time/rtc_set_time should be avoided while
some RTC routines might take very long time (a few seconds).
Signed-off-by: default avatarAtsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 28622795
...@@ -14,7 +14,6 @@ ...@@ -14,7 +14,6 @@
#ifdef __KERNEL__ #ifdef __KERNEL__
#include <linux/spinlock.h>
#include <linux/rtc.h> #include <linux/rtc.h>
#include <asm/time.h> #include <asm/time.h>
...@@ -29,17 +28,13 @@ ...@@ -29,17 +28,13 @@
#define RTC_24H 0x02 /* 24 hour mode - else hours bit 7 means pm */ #define RTC_24H 0x02 /* 24 hour mode - else hours bit 7 means pm */
#define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */ #define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
static DEFINE_SPINLOCK(mips_rtc_lock);
static inline unsigned int get_rtc_time(struct rtc_time *time) static inline unsigned int get_rtc_time(struct rtc_time *time)
{ {
unsigned long nowtime; unsigned long nowtime;
spin_lock(&mips_rtc_lock);
nowtime = rtc_get_time(); nowtime = rtc_get_time();
to_tm(nowtime, time); to_tm(nowtime, time);
time->tm_year -= 1900; time->tm_year -= 1900;
spin_unlock(&mips_rtc_lock);
return RTC_24H; return RTC_24H;
} }
...@@ -49,12 +44,10 @@ static inline int set_rtc_time(struct rtc_time *time) ...@@ -49,12 +44,10 @@ static inline int set_rtc_time(struct rtc_time *time)
unsigned long nowtime; unsigned long nowtime;
int ret; int ret;
spin_lock(&mips_rtc_lock);
nowtime = mktime(time->tm_year+1900, time->tm_mon+1, nowtime = mktime(time->tm_year+1900, time->tm_mon+1,
time->tm_mday, time->tm_hour, time->tm_min, time->tm_mday, time->tm_hour, time->tm_min,
time->tm_sec); time->tm_sec);
ret = rtc_set_time(nowtime); ret = rtc_set_time(nowtime);
spin_unlock(&mips_rtc_lock);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment