Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 35579576 authored by David Howells's avatar David Howells Committed by Linus Torvalds
Browse files

MN10300: Fix RTC routines



A change to the RTC routines in the MN10300 arch used set_rtc_mms() when it
meant set_rtc_mmss().  This results in an error due to a reference of an
undefined symbol.

Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent d4a47ac1
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -20,9 +20,6 @@
DEFINE_SPINLOCK(rtc_lock);
EXPORT_SYMBOL(rtc_lock);

/* last time the RTC got updated */
static long last_rtc_update;

/* time for RTC to update itself in ioclks */
static unsigned long mn10300_rtc_update_period;

@@ -110,7 +107,7 @@ static int set_rtc_mmss(unsigned long nowtime)

int update_persistent_clock(struct timespec now)
{
	return set_rtc_mms(now.tv_sec);
	return set_rtc_mmss(now.tv_sec);
}

/*