diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-10-16 16:24:37 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-10-16 16:24:37 +0000 |
commit | fbe53cea42ec42b36f864bb6b4a477e552de6359 (patch) | |
tree | c2d43c72767fef8a42850a74c8c0f7e120ee6bc8 /sys/arch/i386 | |
parent | 3aa072b77b2e047dc7fbb52fa4c79d08cf1cb4f7 (diff) |
less newlines in verbose print
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/pci/pci_addr_fixup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/pci/pci_addr_fixup.c b/sys/arch/i386/pci/pci_addr_fixup.c index 8493d7d991e..0862961e45b 100644 --- a/sys/arch/i386/pci/pci_addr_fixup.c +++ b/sys/arch/i386/pci/pci_addr_fixup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_addr_fixup.c,v 1.3 2000/09/20 17:29:47 niklas Exp $ */ +/* $OpenBSD: pci_addr_fixup.c,v 1.4 2000/10/16 16:24:36 mickey Exp $ */ /* $NetBSD: pci_addr_fixup.c,v 1.7 2000/08/03 20:10:45 nathanw Exp $ */ /*- @@ -255,7 +255,7 @@ pciaddr_resource_manage(pc, tag, func) /* reservation/allocation phase */ error += (*func) (pc, tag, mapreg, ex, type, &addr, size); - PCIBIOS_PRINTV(("\n\t%02xh %s 0x%08x 0x%08x", + PCIBIOS_PRINTV(("\t%02xh %s 0x%08x 0x%08x\n", mapreg, type ? "port" : "mem ", (unsigned int)addr, (unsigned int)size)); } @@ -273,7 +273,7 @@ pciaddr_resource_manage(pc, tag, func) if (error) pciaddr.nbogus++; - PCIBIOS_PRINTV(("\n\t\t[%s]\n", error ? "NG" : "OK")); + PCIBIOS_PRINTV(("\t\t[%s]\n", error ? "NG" : "OK")); } int |