svn commit: r347924 - in head/sys: i386/conf sys

Brooks Davis brooks at FreeBSD.org
Fri May 17 15:24:58 UTC 2019


Author: brooks
Date: Fri May 17 15:24:54 2019
New Revision: 347924
URL: https://svnweb.freebsd.org/changeset/base/347924

Log:
  FCP-101: Bump __FreeBSD_version for driver removal.
  
  Remove gone_by_fcp101_dev macro.
  
  Remove orphaned comment.

Modified:
  head/sys/i386/conf/GENERIC
  head/sys/sys/systm.h

Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC	Fri May 17 15:24:44 2019	(r347923)
+++ head/sys/i386/conf/GENERIC	Fri May 17 15:24:54 2019	(r347924)
@@ -263,8 +263,6 @@ device		vr			# VIA Rhine, Rhine II
 device		vte			# DM&P Vortex86 RDC R6040 Fast Ethernet
 device		xl			# 3Com 3c90x (``Boomerang'', ``Cyclone'')
 
-# ISA Ethernet NICs.  pccard NICs included.
-
 # Wireless NIC cards
 device		wlan			# 802.11 support
 options 	IEEE80211_DEBUG		# enable debug msgs

Modified: head/sys/sys/systm.h
==============================================================================
--- head/sys/sys/systm.h	Fri May 17 15:24:44 2019	(r347923)
+++ head/sys/sys/systm.h	Fri May 17 15:24:54 2019	(r347924)
@@ -575,9 +575,6 @@ void _gone_in_dev(struct device *dev, int major, const
 #endif
 #define gone_in(major, msg)		__gone_ok(major, msg) _gone_in(major, msg)
 #define gone_in_dev(dev, major, msg)	__gone_ok(major, msg) _gone_in_dev(dev, major, msg)
-#define	gone_by_fcp101_dev(dev)						\
-	gone_in_dev((dev), 13,						\
-	    "see https://github.com/freebsd/fcp/blob/master/fcp-0101.md")
 
 __NULLABILITY_PRAGMA_POP
 


More information about the svn-src-all mailing list