Document that PC Card will likely be removed before 13.

This was discussed in arch@ a while ago. Most of the 16-bit drivers that it
relied on have been removed. There's only a few other drivers remaining that
support it, and those are very rare the days (even the once ubiquitious wi(1)
is now quite rare).

Indvidual drivers will be handled separately before pccard itself is removed.
This commit is contained in:
Warner Losh
2020-08-18 06:18:18 +00:00
parent 31178c8a9e
commit c9234752b0
2 changed files with 5 additions and 1 deletions
+4 -1
View File
@@ -23,7 +23,7 @@
.\" .\"
.\" $FreeBSD$ .\" $FreeBSD$
.\" .\"
.Dd July 9, 2002 .Dd August 18, 2020
.Dt PCCARD 4 .Dt PCCARD 4
.Os .Os
.Sh NAME .Sh NAME
@@ -31,6 +31,9 @@
.Nd PC Card bus driver .Nd PC Card bus driver
.Sh SYNOPSIS .Sh SYNOPSIS
.Cd device pccard .Cd device pccard
.Sh DEPRECATION NOTICE
This driver is scheduled for removal prior to the release of
.Fx 13.0
.Sh DESCRIPTION .Sh DESCRIPTION
The The
.Nm .Nm
+1
View File
@@ -845,6 +845,7 @@ pccard_attach(device_t dev)
sc->sc_enabled_count = 0; sc->sc_enabled_count = 0;
if ((err = pccard_device_create(sc)) != 0) if ((err = pccard_device_create(sc)) != 0)
return (err); return (err);
gone_in(13, "PC Card to be removed.");
STAILQ_INIT(&sc->card.pf_head); STAILQ_INIT(&sc->card.pf_head);
return (bus_generic_attach(dev)); return (bus_generic_attach(dev));
} }