summaryrefslogtreecommitdiffstats
path: root/sys/dev/ppc
diff options
context:
space:
mode:
authordfr <dfr@FreeBSD.org>2000-06-25 09:20:56 +0000
committerdfr <dfr@FreeBSD.org>2000-06-25 09:20:56 +0000
commitef12e65e9ad3f69fcc56133cfc32a4b78351835c (patch)
treed02e209ce5698718d6439fc3dd24492bb09a75e7 /sys/dev/ppc
parent8f25abcfb603ee923f6c115685797d47033034cd (diff)
downloadFreeBSD-src-ef12e65e9ad3f69fcc56133cfc32a4b78351835c.zip
FreeBSD-src-ef12e65e9ad3f69fcc56133cfc32a4b78351835c.tar.gz
Only print the diagnostic about extended I/O ports if bootverbose is true.
Diffstat (limited to 'sys/dev/ppc')
-rw-r--r--sys/dev/ppc/ppc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/ppc/ppc.c b/sys/dev/ppc/ppc.c
index f0aa95d..c6818a2 100644
--- a/sys/dev/ppc/ppc.c
+++ b/sys/dev/ppc/ppc.c
@@ -1785,8 +1785,10 @@ ppc_probe(device_t dev)
ppc->rid_extraio = 0;
- device_printf(dev, "This ppc chipset does not support the extended I/O port range...no problem\n");
-}
+ if (bootverbose)
+ device_printf(dev,
+"This ppc chipset does not support the extended I/O port range...no problem\n");
+ }
ppc->ppc_base = rman_get_start(ppc->res_ioport);
OpenPOWER on IntegriCloud