svn commit: r352342 - head/sys/arm/ti

Ian Lepore ian at FreeBSD.org
Sun Sep 15 01:02:02 UTC 2019


Author: ian
Date: Sun Sep 15 01:02:01 2019
New Revision: 352342
URL: https://svnweb.freebsd.org/changeset/base/352342

Log:
  Make the ti_sysc device quiet.  It's an internal utility pseudo-device
  that makes the upstream FDT data work right, so we don't need to see a
  couple dozen instances of it spam the dmesg at boot time unless it's a
  verbose boot.

Modified:
  head/sys/arm/ti/ti_sysc.c

Modified: head/sys/arm/ti/ti_sysc.c
==============================================================================
--- head/sys/arm/ti/ti_sysc.c	Sat Sep 14 21:49:42 2019	(r352341)
+++ head/sys/arm/ti/ti_sysc.c	Sun Sep 15 01:02:01 2019	(r352342)
@@ -71,6 +71,9 @@ ti_sysc_probe(device_t dev)
 		return (ENXIO);
 
 	device_set_desc(dev, "TI SYSC Interconnect");
+	if (!bootverbose)
+		device_quiet(dev);
+
 	return (BUS_PROBE_DEFAULT);
 }
 


More information about the svn-src-head mailing list