diff options
author | Zhenlei Huang <zlei@FreeBSD.org> | 2023-10-28 20:31:11 +0000 |
---|---|---|
committer | Zhenlei Huang <zlei@FreeBSD.org> | 2023-10-28 20:31:11 +0000 |
commit | 98a670cdd6720da4988f902192177fa368b9f9e9 (patch) | |
tree | e9a6d781b33f432fb5f5c792930fbdd226c3688e | |
parent | 61b15e6dfc963a0c67dbaeae7f4590674976111f (diff) |
isa: Postpone removal of the non-PNP driver until 15
Reviewed by: imp
MFC after: 1 day
Differential Revision: https://reviews.freebsd.org/D42387
-rw-r--r-- | sys/isa/isa_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/isa/isa_common.c b/sys/isa/isa_common.c index 3abbff68ea02..b6f99a0922e5 100644 --- a/sys/isa/isa_common.c +++ b/sys/isa/isa_common.c @@ -570,7 +570,7 @@ isa_probe_children(device_t dev) strcmp(kern_ident, "GENERIC") == 0 && device_is_attached(child)) device_printf(child, - "non-PNP ISA device will be removed from GENERIC in FreeBSD 14.\n"); + "non-PNP ISA device will be removed from GENERIC in FreeBSD 15.\n"); } /* |