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.
This commit is contained in:
Ian Lepore 2019-09-15 01:02:01 +00:00
parent c0f37bf652
commit 3dffab60f3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=352342

View 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);
}