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"); _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"