ndis(4): expand deprecation to the whole driver

nids(4) was a clever idea in the early 2000's when the market was
flooded with 10/100 NICs with Windows-only drivers, but that hasn't been
the case for ages and the driver has had no meaningful maintenance in
ages. It only supports Windows-XP era drivers.

Reviewed by:	imp, bcr
MFC after:	3 days
Sponsored by:	DARPA
Differential Revision:	https://reviews.freebsd.org/D27527
This commit is contained in:
Brooks Davis 2020-12-11 21:51:50 +00:00
parent 59902e6aae
commit 1bcdbfc5de
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=368561
4 changed files with 7 additions and 2 deletions

View File

@ -121,7 +121,7 @@ which can be configured via the
.Xr sysctl 8
command.
.Sh DEPRECATION NOTICE
The PC Card attachment of this driver is scheduled for removal prior to the release of
This driver is scheduled for removal prior to the release of
.Fx 13.0
.Sh DIAGNOSTICS
.Bl -diag

View File

@ -304,7 +304,7 @@ ndis_attach_pccard(dev)
error = ndis_attach(dev);
if (error == 0)
gone_in_dev(dev, 13, "pccard removed");
gone_in_dev(dev, 13, "ndis removed");
fail:
return(error);

View File

@ -337,6 +337,9 @@ ndis_attach_pci(dev)
sc->ndis_devidx = devidx;
error = ndis_attach(dev);
if (error == 0)
gone_in_dev(dev, 13, "ndis removed");
fail:
return(error);

View File

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