Commit e9ddbc075d95b2edf111247cdde16f33c31654a8

Authored by Peter Huewe
Committed by Thomas Gleixner
1 parent f5c9c9be26

avr32: Fix typo in read_persistent_clock()

Fix fallout from the persistent_clock changes.

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Cc: John Stultz <johnstul@us.ibm.com>
Cc: Haavard Skinnemoen <hskinnemoen@atmel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/avr32/kernel/time.c
... ... @@ -112,7 +112,7 @@
112 112  
113 113 void read_persistent_clock(struct timespec *ts)
114 114 {
115   - ts->tv.sec = mktime(2007, 1, 1, 0, 0, 0);
  115 + ts->tv_sec = mktime(2007, 1, 1, 0, 0, 0);
116 116 ts->tv_nsec = 0;
117 117 }
118 118