Don't print the singularly unhelpful message:

unknown: not probled (disabled)

During verbose boot.
This commit is contained in:
phk 2004-11-03 09:06:45 +00:00
parent 3da65903c2
commit a8ef4cbd45

View File

@ -2187,7 +2187,7 @@ device_probe_and_attach(device_t dev)
return (0);
if (!(dev->flags & DF_ENABLED)) {
if (bootverbose) {
if (bootverbose && device_get_name(dev) != NULL) {
device_print_prettyname(dev);
printf("not probed (disabled)\n");
}