From: ian Date: Sun, 15 Sep 2019 01:02:01 +0000 (+0000) Subject: Make the ti_sysc device quiet. It's an internal utility pseudo-device X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=76cd763d2956d1e7c48bc4a5ab2288d8cb5ab7d4;p=freebsd.git 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. --- diff --git a/sys/arm/ti/ti_sysc.c b/sys/arm/ti/ti_sysc.c index 8da5da31da9..d428dd44a1a 100644 --- a/sys/arm/ti/ti_sysc.c +++ b/sys/arm/ti/ti_sysc.c @@ -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); }