Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Mar 2020 13:04:47 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r358803 - in stable/12: share/man/man4/man4.i386 sys/dev/ctau sys/dev/cx
Message-ID:  <202003091304.029D4ltL089513@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Mon Mar  9 13:04:47 2020
New Revision: 358803
URL: https://svnweb.freebsd.org/changeset/base/358803

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.
  
  Relnotes:	Yes
  Sponsored by:	The FreeBSD Foundation

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

Modified: stable/12/share/man/man4/man4.i386/ctau.4
==============================================================================
--- stable/12/share/man/man4/man4.i386/ctau.4	Mon Mar  9 07:12:02 2020	(r358802)
+++ stable/12/share/man/man4/man4.i386/ctau.4	Mon Mar  9 13:04:47 2020	(r358803)
@@ -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/12/share/man/man4/man4.i386/cx.4
==============================================================================
--- stable/12/share/man/man4/man4.i386/cx.4	Mon Mar  9 07:12:02 2020	(r358802)
+++ stable/12/share/man/man4/man4.i386/cx.4	Mon Mar  9 13:04:47 2020	(r358803)
@@ -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/12/sys/dev/ctau/if_ct.c
==============================================================================
--- stable/12/sys/dev/ctau/if_ct.c	Mon Mar  9 07:12:02 2020	(r358802)
+++ stable/12/sys/dev/ctau/if_ct.c	Mon Mar  9 13:04:47 2020	(r358803)
@@ -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/12/sys/dev/cx/if_cx.c
==============================================================================
--- stable/12/sys/dev/cx/if_cx.c	Mon Mar  9 07:12:02 2020	(r358802)
+++ stable/12/sys/dev/cx/if_cx.c	Mon Mar  9 13:04:47 2020	(r358803)
@@ -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;
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003091304.029D4ltL089513>