Don't print the singularly unhelpful message:

unknown: not probled (disabled)

During verbose boot.
This commit is contained in:
Poul-Henning Kamp 2004-11-03 09:06:45 +00:00
parent 0a018af2f2
commit f71a47143f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=137147

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");
}