mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
On further testing on actual machines with this hardware, we should
only warn for devices that are attached. Add missing \n.
This commit is contained in:
parent
d14e21a831
commit
9e1472ca00
1 changed files with 3 additions and 2 deletions
|
|
@ -573,9 +573,10 @@ isa_probe_children(device_t dev)
|
|||
|
||||
err = device_probe_and_attach(child);
|
||||
if (err == 0 && idev->id_vendorid == 0 &&
|
||||
strcmp(kern_ident, "GENERIC") == 0)
|
||||
strcmp(kern_ident, "GENERIC") == 0 &&
|
||||
device_is_attached(child))
|
||||
device_printf(child,
|
||||
"non-PNP ISA device will be removed from GENERIC in FreeBSD 12.");
|
||||
"non-PNP ISA device will be removed from GENERIC in FreeBSD 12.\n");
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue