Skip to content

Commit

Permalink
avr32: Fix typo in read_persistent_clock()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Peter Huewe authored and Thomas Gleixner committed Apr 27, 2010
1 parent f5c9c9b commit e9ddbc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/avr32/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ static struct clock_event_device comparator = {

void read_persistent_clock(struct timespec *ts)
{
ts->tv.sec = mktime(2007, 1, 1, 0, 0, 0);
ts->tv_sec = mktime(2007, 1, 1, 0, 0, 0);
ts->tv_nsec = 0;
}

Expand Down

0 comments on commit e9ddbc0

Please sign in to comment.