diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2019-05-23 19:00:53 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2019-05-23 19:00:53 +0000 |
commit | 549ea7c1459a800d3ccf4a81ede0521a783b933c (patch) | |
tree | 7dff49eef5c32190c56c9db7fcf9e204aa353dc3 /sys | |
parent | aa2c02969081b192d47bfc7466cce32d21ed41e2 (diff) |
zap reference to non-existent function in a comment
ok mpi@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/amd64/isa/clock.c | 7 | ||||
-rw-r--r-- | sys/arch/i386/isa/clock.c | 7 |
2 files changed, 4 insertions, 10 deletions
diff --git a/sys/arch/amd64/isa/clock.c b/sys/arch/amd64/isa/clock.c index db516d9ecde..c355b258816 100644 --- a/sys/arch/amd64/isa/clock.c +++ b/sys/arch/amd64/isa/clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.28 2018/07/27 21:11:31 kettenis Exp $ */ +/* $OpenBSD: clock.c,v 1.29 2019/05/23 19:00:52 jasper Exp $ */ /* $NetBSD: clock.c,v 1.1 2003/04/26 18:39:50 fvdl Exp $ */ /*- @@ -289,10 +289,7 @@ rtcdrain(void *v) if (to != NULL) timeout_del(to); - /* - * Drain any un-acknowledged RTC interrupts. - * See comment in cpu_initclocks(). - */ + /* Drain any un-acknowledged RTC interrupts. */ while (mc146818_read(NULL, MC_REGC) & MC_REGC_PF) ; /* Nothing. */ } diff --git a/sys/arch/i386/isa/clock.c b/sys/arch/i386/isa/clock.c index 0ce6949a438..f1307741ff7 100644 --- a/sys/arch/i386/isa/clock.c +++ b/sys/arch/i386/isa/clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.53 2018/07/30 14:19:12 kettenis Exp $ */ +/* $OpenBSD: clock.c,v 1.54 2019/05/23 19:00:52 jasper Exp $ */ /* $NetBSD: clock.c,v 1.39 1996/05/12 23:11:54 mycroft Exp $ */ /*- @@ -190,10 +190,7 @@ rtcdrain(void *v) if (to != NULL) timeout_del(to); - /* - * Drain any un-acknowledged RTC interrupts. - * See comment in cpu_initclocks(). - */ + /* Drain any un-acknowledged RTC interrupts. */ while (mc146818_read(NULL, MC_REGC) & MC_REGC_PF) ; /* Nothing. */ } |