svn commit: r358804 - in stable/11: share/man/man4/man4.i386 sys/dev/ctau sys/dev/cx

Ed Maste emaste at FreeBSD.org
Mon Mar 9 13:06:03 UTC 2020


Author: emaste
Date: Mon Mar  9 13:06:02 2020
New Revision: 358804
URL: https://svnweb.freebsd.org/changeset/base/358804

Log:
  MFC r358554: Add deprecation notices to ctau and cx drivers
  
  These support outdated or obsolete ISA WAN (T1/E1) sync serial cards,
  and these drivers haven't really been touched (other than in tree-wide
  sweeps to keep them building) for 15+ years.
  
  Related PCI devices ce and cp are still in the tree, with deprecation
  proposed in D23928.
  
  Relnotes:	Yes
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/11/share/man/man4/man4.i386/ctau.4
  stable/11/share/man/man4/man4.i386/cx.4
  stable/11/sys/dev/ctau/if_ct.c
  stable/11/sys/dev/cx/if_cx.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/share/man/man4/man4.i386/ctau.4
==============================================================================
--- stable/11/share/man/man4/man4.i386/ctau.4	Mon Mar  9 13:04:47 2020	(r358803)
+++ stable/11/share/man/man4/man4.i386/ctau.4	Mon Mar  9 13:06:02 2020	(r358804)
@@ -13,7 +13,7 @@
 .\" Cronyx Id: ct.4,v 1.1.2.6 2004/06/21 17:56:40 rik Exp $
 .\" $FreeBSD$
 .\"
-.Dd September 6, 2004
+.Dd March 2, 2020
 .Dt CTAU 4 i386
 .Os
 .Sh NAME
@@ -33,6 +33,12 @@ In
 .Cd hint.ctau.0.port="0x240"
 .Cd hint.ctau.0.irq="15"
 .Cd hint.ctau.0.drq="7"
+.Sh DEPRECATION NOTICE
+The
+.Nm
+driver is not present in
+.Fx 13.0
+and later.
 .Sh DESCRIPTION
 The
 .Nm

Modified: stable/11/share/man/man4/man4.i386/cx.4
==============================================================================
--- stable/11/share/man/man4/man4.i386/cx.4	Mon Mar  9 13:04:47 2020	(r358803)
+++ stable/11/share/man/man4/man4.i386/cx.4	Mon Mar  9 13:06:02 2020	(r358804)
@@ -13,7 +13,7 @@
 .\" Cronyx Id: cx.4,v 1.1.2.6 2004/06/21 17:56:40 rik Exp $
 .\" $FreeBSD$
 .\"
-.Dd July 16, 2005
+.Dd March 2, 2020
 .Dt CX 4 i386
 .Os
 .Sh NAME
@@ -45,6 +45,12 @@ In
 .Cd hint.cx.0.port="0x240"
 .Cd hint.cx.0.irq="15"
 .Cd hint.cx.0.drq="7"
+.Sh DEPRECATION NOTICE
+The
+.Nm
+driver is not present in
+.Fx 13.0
+and later.
 .Sh DESCRIPTION
 The
 .Nm

Modified: stable/11/sys/dev/ctau/if_ct.c
==============================================================================
--- stable/11/sys/dev/ctau/if_ct.c	Mon Mar  9 13:04:47 2020	(r358803)
+++ stable/11/sys/dev/ctau/if_ct.c	Mon Mar  9 13:06:02 2020	(r358804)
@@ -748,6 +748,7 @@ static int ct_attach (device_t dev)
 	}
 	splx (s);
 	
+	gone_in_dev(dev, 13, "sync serial (T1/E1) ISA card drivers");
 	return 0;
 }
 

Modified: stable/11/sys/dev/cx/if_cx.c
==============================================================================
--- stable/11/sys/dev/cx/if_cx.c	Mon Mar  9 13:04:47 2020	(r358803)
+++ stable/11/sys/dev/cx/if_cx.c	Mon Mar  9 13:06:02 2020	(r358804)
@@ -871,6 +871,7 @@ static int cx_attach (device_t dev)
 	}
 	splx (s);
 
+	gone_in_dev(dev, 13, "sync serial (T1/E1) ISA card drivers");
 	return 0;
 }
 


More information about the svn-src-all mailing list