Commit c573b29b authored by Joe Perches's avatar Joe Perches Committed by Greg Ungerer

arch/m68knommu/kernel/time.c: Remove unnecessary semicolons

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
parent 732c611e
......@@ -69,7 +69,7 @@ static unsigned long read_rtc_mmss(void)
if ((year += 1900) < 1970)
year += 100;
return mktime(year, mon, day, hour, min, sec);;
return mktime(year, mon, day, hour, min, sec);
}
unsigned long read_persistent_clock(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment