svn commit: r301032 - head/sys/dev/pci

Andrew Turner andrew at FreeBSD.org
Tue May 31 09:24:18 UTC 2016


Author: andrew
Date: Tue May 31 09:24:16 2016
New Revision: 301032
URL: https://svnweb.freebsd.org/changeset/base/301032

Log:
  Move a device_printf under bootverbose where it should have been.
  
  Reported by:	bz
  Obtained from:	ABT Systems Ltd
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/dev/pci/pci_host_generic.c

Modified: head/sys/dev/pci/pci_host_generic.c
==============================================================================
--- head/sys/dev/pci/pci_host_generic.c	Tue May 31 09:15:21 2016	(r301031)
+++ head/sys/dev/pci/pci_host_generic.c	Tue May 31 09:24:16 2016	(r301032)
@@ -185,7 +185,7 @@ pci_host_generic_attach(device_t dev)
 	if (sc->coherent == 0) {
 		sc->coherent = OF_hasprop(node, "dma-coherent");
 	}
-	//if (bootverbose)
+	if (bootverbose)
 		device_printf(dev, "Bus is%s cache-coherent\n",
 		    sc->coherent ? "" : " not");
 


More information about the svn-src-all mailing list