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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=364336
2 changed files with 5 additions and 1 deletions

View File

@ -23,7 +23,7 @@
.\"
.\" $FreeBSD$
.\"
.Dd July 9, 2002
.Dd August 18, 2020
.Dt PCCARD 4
.Os
.Sh NAME
@ -31,6 +31,9 @@
.Nd PC Card bus driver
.Sh SYNOPSIS
.Cd device pccard
.Sh DEPRECATION NOTICE
This driver is scheduled for removal prior to the release of
.Fx 13.0
.Sh DESCRIPTION
The
.Nm

View File

@ -845,6 +845,7 @@ pccard_attach(device_t dev)
sc->sc_enabled_count = 0;
if ((err = pccard_device_create(sc)) != 0)
return (err);
gone_in(13, "PC Card to be removed.");
STAILQ_INIT(&sc->card.pf_head);
return (bus_generic_attach(dev));
}