svn commit: r355028 - in stable/12: share/man/man4 sys/dev/hpt27xx sys/dev/trm

Scott Long scottl at FreeBSD.org
Sat Nov 23 07:06:18 UTC 2019


Author: scottl
Date: Sat Nov 23 07:06:16 2019
New Revision: 355028
URL: https://svnweb.freebsd.org/changeset/base/355028

Log:
  MFC 355012 and 355021.  Mark trm and hpt27xx for removal in 13.0

Modified:
  stable/12/share/man/man4/hpt27xx.4
  stable/12/share/man/man4/trm.4
  stable/12/sys/dev/hpt27xx/hpt27xx_osm_bsd.c
  stable/12/sys/dev/trm/trm.c

Modified: stable/12/share/man/man4/hpt27xx.4
==============================================================================
--- stable/12/share/man/man4/hpt27xx.4	Sat Nov 23 03:38:26 2019	(r355027)
+++ stable/12/share/man/man4/hpt27xx.4	Sat Nov 23 07:06:16 2019	(r355028)
@@ -44,6 +44,9 @@ module at boot time, place the following line in
 .Bd -literal -offset indent
 hpt27xx_load="YES"
 .Ed
+.Sh DEPRECATION NOTICE
+This driver is scheduled for removal prior to the release of
+.Fx 13.0 .
 .Sh DESCRIPTION
 The
 .Nm

Modified: stable/12/share/man/man4/trm.4
==============================================================================
--- stable/12/share/man/man4/trm.4	Sat Nov 23 03:38:26 2019	(r355027)
+++ stable/12/share/man/man4/trm.4	Sat Nov 23 07:06:16 2019	(r355028)
@@ -48,6 +48,9 @@ module at boot time, place the following line in
 .Bd -literal -offset indent
 trm_load="YES"
 .Ed
+.Sh DEPRECATION NOTICE
+This driver is scheduled for removal prior to the release of
+.Fx 13.0
 .Sh DESCRIPTION
 The
 .Nm

Modified: stable/12/sys/dev/hpt27xx/hpt27xx_osm_bsd.c
==============================================================================
--- stable/12/sys/dev/hpt27xx/hpt27xx_osm_bsd.c	Sat Nov 23 03:38:26 2019	(r355027)
+++ stable/12/sys/dev/hpt27xx/hpt27xx_osm_bsd.c	Sat Nov 23 07:06:16 2019	(r355028)
@@ -76,7 +76,9 @@ static int hpt_attach(device_t dev)
 	HPT_UINT size;
 	PVBUS vbus;
 	PVBUS_EXT vbus_ext;
-	
+
+	gone_in(13, "Giant locked CAM drivers");
+
 	KdPrint(("hpt_attach(%d/%d/%d)", pci_get_bus(dev), pci_get_slot(dev), pci_get_function(dev)));
 
 	him = hpt_match(dev, 1);

Modified: stable/12/sys/dev/trm/trm.c
==============================================================================
--- stable/12/sys/dev/trm/trm.c	Sat Nov 23 03:38:26 2019	(r355027)
+++ stable/12/sys/dev/trm/trm.c	Sat Nov 23 07:06:16 2019	(r355028)
@@ -3376,7 +3376,9 @@ trm_attach(device_t dev)
 	PACB	pACB = 0;
 	int	rid = 0;
 	int unit = device_get_unit(dev);
-	
+
+	gone_in(13, "Giant locked CAM drivers");
+
 	device_id = pci_get_devid(dev);
 	/*
 	 * These cards do not allow memory mapped accesses


More information about the svn-src-all mailing list