diff options
| author | Søren Schmidt <sos@FreeBSD.org> | 2000-02-20 10:07:28 +0000 |
|---|---|---|
| committer | Søren Schmidt <sos@FreeBSD.org> | 2000-02-20 10:07:28 +0000 |
| commit | a6e23e28c1f7eabd1f2763bb9e94d7289e486620 (patch) | |
| tree | 1e8b83662ee0c349d17b085d2beaab2429a60582 | |
| parent | 218e70aa03ed6bfb783e627607e2eb4a1acc1157 (diff) | |
Notes
| -rw-r--r-- | sys/kern/subr_bus.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c index 89fa1436f42e..46aac7de6df7 100644 --- a/sys/kern/subr_bus.c +++ b/sys/kern/subr_bus.c @@ -490,7 +490,8 @@ devclass_alloc_unit(devclass_t dc, int *unitp) device_t dev; dev = devclass_get_device(dc, unit); if (dev) { - printf("devclass_alloc_unit: %s%d already exists, using next available unit number\n", dc->name, unit); + if (bootverbose) + printf("devclass_alloc_unit: %s%d already exists, using next available unit number\n", dc->name, unit); unit = -1; } } |
