diff options
| author | Warner Losh <imp@FreeBSD.org> | 2001-11-02 17:33:06 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2001-11-02 17:33:06 +0000 |
| commit | 89bbe0cd1ec3f47c1f75166ccf984ffe8f14ff5b (patch) | |
| tree | e883a84e2e3e654f556b1635d389109b04fe8f23 | |
| parent | bcf8b176bb6a2cb888330aec4b04c77da6a96489 (diff) | |
Notes
| -rw-r--r-- | sys/kern/subr_bus.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c index 6937b561d26b..77912f232740 100644 --- a/sys/kern/subr_bus.c +++ b/sys/kern/subr_bus.c @@ -363,9 +363,8 @@ devclass_alloc_unit(devclass_t dc, int *unitp) if (unit != -1) { if (unit >= 0 && unit < dc->maxunit && dc->devices[unit] != NULL) { - if (bootverbose) - printf("%s-: %s%d already exists, skipping it\n", - dc->name, dc->name, *unitp); + printf("%s-: %s%d already exists, skipping it\n", + dc->name, dc->name, *unitp); return (EEXIST); } } else { |
