diff options
author | Masao Uebayashi <uebayasi@cvs.openbsd.org> | 2014-07-10 13:34:33 +0000 |
---|---|---|
committer | Masao Uebayashi <uebayasi@cvs.openbsd.org> | 2014-07-10 13:34:33 +0000 |
commit | fd44aff8a64104f8df34eb71bc06a61347463828 (patch) | |
tree | 83d181d2eef0b2ebecf76e851fba35b4be030786 /sys/arch/hppa | |
parent | 1617fe128aaf8d224a914b4258c75c95ff8e1d75 (diff) |
boot(): Remove comments about RB_TIMEBAD to reduce diffs
RB_TIMEBAD is documented well enough that the comment is not needed. sparc64
does slightly different and its comment is left with XXX.
OK deraadt@ miod@
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/hppa/machdep.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/arch/hppa/hppa/machdep.c b/sys/arch/hppa/hppa/machdep.c index 0d79161c1af..8d95b2852e2 100644 --- a/sys/arch/hppa/hppa/machdep.c +++ b/sys/arch/hppa/hppa/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.223 2014/07/10 12:13:48 uebayasi Exp $ */ +/* $OpenBSD: machdep.c,v 1.224 2014/07/10 13:34:32 uebayasi Exp $ */ /* * Copyright (c) 1999-2003 Michael Shalayeff @@ -913,11 +913,7 @@ boot(int howto) if (!(howto & RB_NOSYNC)) { waittime = 0; vfs_shutdown(); - /* - * If we've been adjusting the clock, the todr - * will be out of synch; adjust it now unless - * the system was sitting in ddb. - */ + if ((howto & RB_TIMEBAD) == 0) resettodr(); else |