summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_ral_pci.c
diff options
context:
space:
mode:
authorDamien Bergamini <damien@cvs.openbsd.org>2005-02-19 12:11:41 +0000
committerDamien Bergamini <damien@cvs.openbsd.org>2005-02-19 12:11:41 +0000
commit3305994d4bf2d44211726e523d85c745e599a882 (patch)
treedb625898b0c3c0db4372042381b1f213aed44c6e /sys/dev/pci/if_ral_pci.c
parent278a7d940d2f7af98a74d4495f21294e70769832 (diff)
fix dmesg output. pointed out by jsg@
Diffstat (limited to 'sys/dev/pci/if_ral_pci.c')
-rw-r--r--sys/dev/pci/if_ral_pci.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/pci/if_ral_pci.c b/sys/dev/pci/if_ral_pci.c
index 5a6d37683db..5e211347310 100644
--- a/sys/dev/pci/if_ral_pci.c
+++ b/sys/dev/pci/if_ral_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ral_pci.c,v 1.2 2005/02/18 19:57:54 damien Exp $ */
+/* $OpenBSD: if_ral_pci.c,v 1.3 2005/02/19 12:11:40 damien Exp $ */
/*-
* Copyright (c) 2005
@@ -100,8 +100,6 @@ ral_pci_attach(struct device *parent, struct device *self, void *aux)
sc->sc_dmat = pa->pa_dmat;
psc->sc_pc = pa->pa_pc;
- printf("\n");
-
/* enable the appropriate bits in the PCI CSR */
reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
reg |= PCI_COMMAND_MASTER_ENABLE | PCI_COMMAND_MEM_ENABLE;
@@ -131,7 +129,7 @@ ral_pci_attach(struct device *parent, struct device *self, void *aux)
printf("\n");
return;
}
- printf(": %s\n", intrstr);
+ printf(": %s", intrstr);
ral_attach(sc);
}