svn commit: r358554 - in head: share/man/man4/man4.i386 sys/dev/ctau sys/dev/cx

Ed Maste emaste at FreeBSD.org
Mon Mar 2 20:14:29 UTC 2020


Author: emaste
Date: Mon Mar  2 20:14:27 2020
New Revision: 358554
URL: https://svnweb.freebsd.org/changeset/base/358554

Log:
  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.
  
  MFC after:	1 week
  Relnotes:	Yes
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/share/man/man4/man4.i386/ctau.4
  head/share/man/man4/man4.i386/cx.4
  head/sys/dev/ctau/if_ct.c
  head/sys/dev/cx/if_cx.c

Modified: head/share/man/man4/man4.i386/ctau.4
==============================================================================
--- head/share/man/man4/man4.i386/ctau.4	Mon Mar  2 18:40:34 2020	(r358553)
+++ head/share/man/man4/man4.i386/ctau.4	Mon Mar  2 20:14:27 2020	(r358554)
@@ -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: head/share/man/man4/man4.i386/cx.4
==============================================================================
--- head/share/man/man4/man4.i386/cx.4	Mon Mar  2 18:40:34 2020	(r358553)
+++ head/share/man/man4/man4.i386/cx.4	Mon Mar  2 20:14:27 2020	(r358554)
@@ -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: head/sys/dev/ctau/if_ct.c
==============================================================================
--- head/sys/dev/ctau/if_ct.c	Mon Mar  2 18:40:34 2020	(r358553)
+++ head/sys/dev/ctau/if_ct.c	Mon Mar  2 20:14:27 2020	(r358554)
@@ -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: head/sys/dev/cx/if_cx.c
==============================================================================
--- head/sys/dev/cx/if_cx.c	Mon Mar  2 18:40:34 2020	(r358553)
+++ head/sys/dev/cx/if_cx.c	Mon Mar  2 20:14:27 2020	(r358554)
@@ -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-head mailing list