svn commit: r364336 - in head: share/man/man4 sys/dev/pccard
Warner Losh
imp at FreeBSD.org
Tue Aug 18 06:18:19 UTC 2020
Author: imp
Date: Tue Aug 18 06:18:18 2020
New Revision: 364336
URL: https://svnweb.freebsd.org/changeset/base/364336
Log:
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.
Modified:
head/share/man/man4/pccard.4
head/sys/dev/pccard/pccard.c
Modified: head/share/man/man4/pccard.4
==============================================================================
--- head/share/man/man4/pccard.4 Tue Aug 18 06:07:34 2020 (r364335)
+++ head/share/man/man4/pccard.4 Tue Aug 18 06:18:18 2020 (r364336)
@@ -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
Modified: head/sys/dev/pccard/pccard.c
==============================================================================
--- head/sys/dev/pccard/pccard.c Tue Aug 18 06:07:34 2020 (r364335)
+++ head/sys/dev/pccard/pccard.c Tue Aug 18 06:18:18 2020 (r364336)
@@ -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));
}
More information about the svn-src-all
mailing list