diff options
author | 2005-10-22 23:26:02 +0000 | |
---|---|---|
committer | 2005-10-22 23:26:02 +0000 | |
commit | 7c59cc70ac89efb513cb26a5e7768eea12b060da (patch) | |
tree | 248888ac8f62072c09f184638eb52b1ee1e80a21 /sys/dev/pci | |
parent | check for 82801FBM SATA in one more spot. (diff) | |
download | wireguard-openbsd-7c59cc70ac89efb513cb26a5e7768eea12b060da.tar.xz wireguard-openbsd-7c59cc70ac89efb513cb26a5e7768eea12b060da.zip |
shorten ne(4) dmesg entries from 2-3 lines to 1.
Thanks to Han Boetes for testing on an isapnp card.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_ne_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_ne_pci.c b/sys/dev/pci/if_ne_pci.c index e4eb5967a9b..28aeaaf90e7 100644 --- a/sys/dev/pci/if_ne_pci.c +++ b/sys/dev/pci/if_ne_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ne_pci.c,v 1.13 2005/09/11 18:17:08 mickey Exp $ */ +/* $OpenBSD: if_ne_pci.c,v 1.14 2005/10/22 23:26:08 brad Exp $ */ /* $NetBSD: if_ne_pci.c,v 1.8 1998/07/05 00:51:24 jonathan Exp $ */ /*- @@ -252,7 +252,7 @@ ne_pci_attach(parent, self, aux) bus_space_unmap(nict, nich, iosize); return; } - printf(": %s\n", intrstr); + printf(": %s", intrstr); /* * Do generic NE2000 attach. This will read the station address |