aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/sgi-ip22
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/sgi-ip22')
-rw-r--r--arch/mips/sgi-ip22/ip22-time.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/sgi-ip22/ip22-time.c b/arch/mips/sgi-ip22/ip22-time.c
index 0387c385b4b2..c49418067f93 100644
--- a/arch/mips/sgi-ip22/ip22-time.c
+++ b/arch/mips/sgi-ip22/ip22-time.c
@@ -29,7 +29,7 @@
29#include <asm/sgi/ip22.h> 29#include <asm/sgi/ip22.h>
30 30
31/* 31/*
32 * note that mktime uses month from 1 to 12 while to_tm 32 * Note that mktime uses month from 1 to 12 while rtc_time_to_tm
33 * uses 0 to 11. 33 * uses 0 to 11.
34 */ 34 */
35unsigned long read_persistent_clock(void) 35unsigned long read_persistent_clock(void)
@@ -66,10 +66,10 @@ int rtc_mips_set_time(unsigned long tim)
66 unsigned int save_control; 66 unsigned int save_control;
67 unsigned long flags; 67 unsigned long flags;
68 68
69 to_tm(tim, &tm); 69 rtc_time_to_tm(tim, &tm);
70 70
71 tm.tm_mon += 1; /* tm_mon starts at zero */ 71 tm.tm_mon += 1; /* tm_mon starts at zero */
72 tm.tm_year -= 1940; 72 tm.tm_year -= 40;
73 if (tm.tm_year >= 100) 73 if (tm.tm_year >= 100)
74 tm.tm_year -= 100; 74 tm.tm_year -= 100;
75 75