aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc64/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ppc64/kernel')
-rw-r--r--arch/ppc64/kernel/maple_time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ppc64/kernel/maple_time.c b/arch/ppc64/kernel/maple_time.c
index cf5186335900..445cb7470bf5 100644
--- a/arch/ppc64/kernel/maple_time.c
+++ b/arch/ppc64/kernel/maple_time.c
@@ -172,7 +172,7 @@ unsigned long __init maple_get_boot_time(void)
172 } 172 }
173 173
174 maple_get_rtc_time(&tm); 174 maple_get_rtc_time(&tm);
175 return mktime(time->tm_year+1900, time->tm_mon+1, time->tm_mday, 175 return mktime(tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday,
176 time->tm_hour, time->tm_min, time->tm_sec); 176 tm.tm_hour, tm.tm_min, tm.tm_sec);
177} 177}
178 178