diff options
author | Masao Uebayashi <uebayasi@cvs.openbsd.org> | 2014-07-10 20:15:28 +0000 |
---|---|---|
committer | Masao Uebayashi <uebayasi@cvs.openbsd.org> | 2014-07-10 20:15:28 +0000 |
commit | a7afba102c11ffc2238e4ece5abaf2a9e695834d (patch) | |
tree | 560871833820dbb35fc08c8b76737f8f0daf6143 /sys/arch/armish | |
parent | b54ae4b42c50da512ad76ad5d532154b249e5411 (diff) |
boot(9): Remove comments about RB_*, "cold", and savectx()
Again remove slightly different comments to reduce diffs. These will be
re-added once boot() become MI and its specification is clearly re-defined.
OK miod@
Diffstat (limited to 'sys/arch/armish')
-rw-r--r-- | sys/arch/armish/armish/armish_machdep.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/armish/armish/armish_machdep.c b/sys/arch/armish/armish/armish_machdep.c index db45f57b52f..b4466803bf9 100644 --- a/sys/arch/armish/armish/armish_machdep.c +++ b/sys/arch/armish/armish/armish_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: armish_machdep.c,v 1.26 2014/07/10 12:13:48 uebayasi Exp $ */ +/* $OpenBSD: armish_machdep.c,v 1.27 2014/07/10 20:15:26 uebayasi Exp $ */ /* $NetBSD: lubbock_machdep.c,v 1.2 2003/07/15 00:25:06 lukem Exp $ */ /* @@ -252,10 +252,6 @@ boot(int howto) struct device *mainbus; if (cold) { - /* - * If the system is cold, just halt, unless the user - * explicitely asked for reboot. - */ if ((howto & RB_USERREQ) == 0) howto |= RB_HALT; goto haltsys; |