From e52e9d5b995d096ac83af5a45b69f59296456d54 Mon Sep 17 00:00:00 2001 From: imp Date: Fri, 2 Nov 2001 17:33:06 +0000 Subject: Don't hide the failure to allocate device behind boot verbose. It is still telling us of real problems so should remain until it stops doing that. Submitted by: OGAWA Takaya --- sys/kern/subr_bus.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sys/kern') diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c index 6937b56..77912f2 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 { -- cgit v1.1