aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68knommu
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2009-07-02 14:08:03 +1000
committerGreg Ungerer <gerg@uclinux.org>2009-09-16 09:43:31 +1000
commitc573b29baf3e1b71a60ee6de76dd28c9c49fb87f (patch)
tree5b0b61cc77f4288fee6cb0ca3cb33e110688a6da /arch/m68knommu
parentgeneric GPIO support misc files. (diff)
downloadlinux-dev-c573b29baf3e1b71a60ee6de76dd28c9c49fb87f.tar.xz
linux-dev-c573b29baf3e1b71a60ee6de76dd28c9c49fb87f.zip
arch/m68knommu/kernel/time.c: Remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68knommu')
-rw-r--r--arch/m68knommu/kernel/time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68knommu/kernel/time.c b/arch/m68knommu/kernel/time.c
index d182b2f72211..c2aa717de08a 100644
--- a/arch/m68knommu/kernel/time.c
+++ b/arch/m68knommu/kernel/time.c
@@ -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)