arch/m68knommu/kernel/time.c: Remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Ungerer <gerg@uclinux.org>
This commit is contained in:
parent
732c611e5b
commit
c573b29baf
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue