mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-01 12:19:28 +00: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
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=327379
@ -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 New Issue
Block a user