]> xenbits.xensource.com Git - freebsd.git/commitdiff
Make the ti_sysc device quiet. It's an internal utility pseudo-device
authorian <ian@FreeBSD.org>
Sun, 15 Sep 2019 01:02:01 +0000 (01:02 +0000)
committerian <ian@FreeBSD.org>
Sun, 15 Sep 2019 01:02:01 +0000 (01:02 +0000)
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.

sys/arm/ti/ti_sysc.c

index 8da5da31da91fe9646b4e9e6db7dd4fb74c627ef..d428dd44a1ab7c14cbaba64d615a23ffd257ca59 100644 (file)
@@ -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);
 }