summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sobrado <sobrado@cvs.openbsd.org>2010-02-18 20:48:16 +0000
committerIgor Sobrado <sobrado@cvs.openbsd.org>2010-02-18 20:48:16 +0000
commit8b94b7ea0b6fbca0a98ea6d471a4b1ada9882a26 (patch)
tree70f577ea8cad79e99be633791eece2c1947e9223
parent3280e46013f451d1de5f14a1f8a22b13c8954107 (diff)
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.c8
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);