summaryrefslogtreecommitdiff
path: root/sys/dev/pci/nofn.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-02-03 17:17:34 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-02-03 17:17:34 +0000
commitcee132488eb0b5c2ba9b271e636150ffb1139cb7 (patch)
treea420e76a7791102591a95e04a0167b233d49389c /sys/dev/pci/nofn.c
parente73723e446dce78a3ed861fe20580beac5e0f336 (diff)
advertise features of our crypto chips better; ok tdeval
jason is being a slacker
Diffstat (limited to 'sys/dev/pci/nofn.c')
-rw-r--r--sys/dev/pci/nofn.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/pci/nofn.c b/sys/dev/pci/nofn.c
index 7f5d66c95a5..cdd60c060c5 100644
--- a/sys/dev/pci/nofn.c
+++ b/sys/dev/pci/nofn.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nofn.c,v 1.10 2004/01/09 21:32:24 brad Exp $ */
+/* $OpenBSD: nofn.c,v 1.11 2004/02/03 17:17:33 deraadt Exp $ */
/*
* Copyright (c) 2002 Jason L. Wright (jason@thought.net)
@@ -176,12 +176,12 @@ nofn_attach(parent, self, aux)
break;
}
- printf(": %s", intrstr);
+ printf(":");
if (sc->sc_flags & NOFN_FLAGS_PK)
- printf(", pk");
+ printf(" PK");
if (sc->sc_flags & NOFN_FLAGS_RNG)
- printf(", rng");
- printf("\n");
+ printf(" RNG");
+ printf(", %s\n", intrstr);
REG_WRITE_4(sc, NOFN_PCI_INT_MASK, sc->sc_intrmask);