Date: Sun, 15 Sep 2019 01:02:01 +0000 (UTC) From: Ian Lepore <ian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r352342 - head/sys/arm/ti Message-ID: <201909150102.x8F121j0052527@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909150102.x8F121j0052527>