Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux...
[deliverable/linux.git] / arch / m68knommu / kernel / time.c
index c2aa717de08a9280bfcf0a359549d4e1a5e41c5e..a90acf5b0cde1812263625843dc348c6ce717f86 100644 (file)
@@ -72,9 +72,10 @@ static unsigned long read_rtc_mmss(void)
        return  mktime(year, mon, day, hour, min, sec);
 }
 
-unsigned long read_persistent_clock(void)
+void read_persistent_clock(struct timespec *ts)
 {
-       return read_rtc_mmss();
+       ts->tv_sec = read_rtc_mmss();
+       ts->tv_nsec = 0;
 }
 
 int update_persistent_clock(struct timespec now)
This page took 0.023764 seconds and 5 git commands to generate.