diff options
author | 2010-02-18 20:48:15 +0000 | |
---|---|---|
committer | 2010-02-18 20:48:15 +0000 | |
commit | 9e3821dd4bb949d5df17e3a18c77fc4d386d1cb0 (patch) | |
tree | ea6a889873b731c1ffd37f92108e7e93c6ee7908 | |
parent | document two ways to get back into PMON when autobooting is enabled (diff) | |
download | wireguard-openbsd-9e3821dd4bb949d5df17e3a18c77fc4d386d1cb0.tar.xz wireguard-openbsd-9e3821dd4bb949d5df17e3a18c77fc4d386d1cb0.zip |
improve startup messages rewording them in a more usual way; as a
side effect, this change makes displayed messages shorter.
miod@ has observed that `Horse' is the codename of the chip, which
gets paired with a `Saddle' companion chip. there is one hose
(i.e., bus) per chip; others (`Tsunami') have two hoses per chip,
or even four (`Typhoon'); so, `Horse' is not really a typo.
written with clever advice from krw@ and miod@
miod@ has suggested the capitalization for `Saddle'.
ok krw@, miod@
-rw-r--r-- | sys/arch/alpha/pci/mcpcia.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/alpha/pci/mcpcia.c b/sys/arch/alpha/pci/mcpcia.c index 9b2a1a94379..9d519c67437 100644 --- a/sys/arch/alpha/pci/mcpcia.c +++ b/sys/arch/alpha/pci/mcpcia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mcpcia.c,v 1.4 2009/03/30 21:43:13 kettenis Exp $ */ +/* $OpenBSD: mcpcia.c,v 1.5 2010/02/18 20:48:15 sobrado Exp $ */ /* $NetBSD: mcpcia.c,v 1.20 2007/03/04 05:59:11 christos Exp $ */ /*- @@ -184,9 +184,9 @@ mcpciaattach(parent, self, aux) mcpcia_init0(ccp, 1); ctl = REGVAL(MCPCIA_PCI_REV(ccp)); - printf("%s: Horse Revision %d, %s Handed Saddle Revision %d," - " CAP Revision %d\n", mcp->mcpcia_dev.dv_xname, HORSE_REV(ctl), - (SADDLE_TYPE(ctl) & 1)? "Right": "Left", SADDLE_REV(ctl), + printf("%s: Horse rev %d, %s handed Saddle rev %d, CAP rev %d\n", + mcp->mcpcia_dev.dv_xname, HORSE_REV(ctl), + (SADDLE_TYPE(ctl) & 1) ? "right" : "left", SADDLE_REV(ctl), CAP_REV(ctl)); mcpcia_dma_init(ccp); |