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

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)