summaryrefslogtreecommitdiff
path: root/sys/dev/pci/i82365_pci.c
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2001-09-21 17:55:45 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2001-09-21 17:55:45 +0000
commit296a980a673fb8ee2d9828dd1849f41a76ae8ffa (patch)
tree562f8089f0fb6f54fb967d433196ed322ceea17e /sys/dev/pci/i82365_pci.c
parent03f3926613d3d324635bb86e844e68fc70426465 (diff)
Correct some pryntf() usage: get the correct number of arguments in the
correct order.
Diffstat (limited to 'sys/dev/pci/i82365_pci.c')
-rw-r--r--sys/dev/pci/i82365_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/i82365_pci.c b/sys/dev/pci/i82365_pci.c
index 92faced02ea..a6d105ec05e 100644
--- a/sys/dev/pci/i82365_pci.c
+++ b/sys/dev/pci/i82365_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: i82365_pci.c,v 1.4 2001/06/12 15:40:31 niklas Exp $ */
+/* $OpenBSD: i82365_pci.c,v 1.5 2001/09/21 17:55:43 miod Exp $ */
/* $NetBSD: i82365_pci.c,v 1.11 2000/02/24 03:42:44 itohy Exp $ */
/*
@@ -217,7 +217,7 @@ pcic_pci_attach(parent, self, aux)
} else
printf("%s: no irq, ", sc->dev.dv_xname);
- printf("polling enabled\n", sc->dev.dv_xname);
+ printf("polling enabled\n");
if (sc->poll_established == 0) {
timeout_set(&sc->poll_timeout, pcic_poll_intr, sc);
timeout_add(&sc->poll_timeout, hz / 2);