Module Name: src
Committed By: palle
Date: Wed Sep 9 03:47:58 UTC 2015
Modified Files:
src/sys/arch/sparc64/dev: vpci.c
Log Message:
Fixed console logging when booting with -q
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/sparc64/dev/vpci.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/sparc64/dev/vpci.c
diff -u src/sys/arch/sparc64/dev/vpci.c:1.4 src/sys/arch/sparc64/dev/vpci.c:1.5
--- src/sys/arch/sparc64/dev/vpci.c:1.4 Tue Sep 8 04:04:33 2015
+++ src/sys/arch/sparc64/dev/vpci.c Wed Sep 9 03:47:58 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: vpci.c,v 1.4 2015/09/08 04:04:33 palle Exp $ */
+/* $NetBSD: vpci.c,v 1.5 2015/09/09 03:47:58 palle Exp $ */
/*
* Copyright (c) 2015 Palle Lyckegaard
* All rights reserved.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vpci.c,v 1.4 2015/09/08 04:04:33 palle Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vpci.c,v 1.5 2015/09/09 03:47:58 palle Exp $");
#include <sys/param.h>
#include <sys/device.h>
@@ -307,7 +307,8 @@ vpci_init_iommu(struct vpci_softc *sc, s
} else
panic("vpci_init_iommu: getprop virtual-dma failed");
- aprint_normal(" vdma %x length %x\n", iobase, iolen);
+ aprint_normal(" vdma %x length %x\n", iobase, iolen);
+ aprint_naive("\n");
/* We have no STC. */
is->is_sb[0] = NULL;