ndis: Per user request, delay removal to 14

We will remove ndis shortly after the 13 branch.

Reviewed by:	emaste
Differential Revision:	https://reviews.freebsd.org/D28049
This commit is contained in:
Brooks Davis 2021-01-11 18:11:49 +00:00
parent d1eb05aa0c
commit d7a7d6a7c3
3 changed files with 3 additions and 3 deletions

View File

@ -121,7 +121,7 @@ which can be configured via the
command.
.Sh DEPRECATION NOTICE
This driver is scheduled for removal prior to the release of
.Fx 13.0
.Fx 14.0
.Sh DIAGNOSTICS
.Bl -diag
.It "ndis%d: watchdog timeout"

View File

@ -338,7 +338,7 @@ ndis_attach_pci(dev)
error = ndis_attach(dev);
if (error == 0)
gone_in_dev(dev, 13, "ndis removed");
gone_in_dev(dev, 14, "ndis removed");
fail:

View File

@ -199,7 +199,7 @@ ndisusb_attach(device_t self)
if (ndis_attach(self) != 0)
return (ENXIO);
gone_in_dev(self, 13, "ndis removed");
gone_in_dev(self, 14, "ndis removed");
return (0);
}