aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/random/randomdev.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2004-07-01 07:46:29 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2004-07-01 07:46:29 +0000
commit39981fed8268fafa88e853bdf2b39d406b319dca (patch)
tree21d778c675dd108d89c9cdf1b6991ddb90939ee8 /sys/dev/random/randomdev.c
parent251bedd15b2e551bb3f95fa3b3e38226d60cf0f1 (diff)
Notes
Diffstat (limited to 'sys/dev/random/randomdev.c')
-rw-r--r--sys/dev/random/randomdev.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/random/randomdev.c b/sys/dev/random/randomdev.c
index a88e4a913b91..7c5434e44626 100644
--- a/sys/dev/random/randomdev.c
+++ b/sys/dev/random/randomdev.c
@@ -200,7 +200,9 @@ random_modevent(module_t mod __unused, int type, void *data __unused)
random_ident_hardware(&random_systat);
(*random_systat.init)();
- printf("random: <entropy source, %s>\n", random_systat.ident);
+ if (bootverbose)
+ printf("random: <entropy source, %s>\n",
+ random_systat.ident);
random_dev = make_dev(&random_cdevsw, RANDOM_MINOR,
UID_ROOT, GID_WHEEL, 0666, "random");