svn commit: r326377 - in head/sys: amd64/conf arm/conf i386/conf mips/conf modules/aic7xxx/ahc modules/aic7xxx/ahd powerpc/conf sparc64/conf

Scott Long scottl at FreeBSD.org
Wed Nov 29 23:41:52 UTC 2017


Author: scottl
Date: Wed Nov 29 23:41:49 2017
New Revision: 326377
URL: https://svnweb.freebsd.org/changeset/base/326377

Log:
  It's time to retire AHC_REG_PRETTY_PRINT and AHD_REG_PRETTY_PRINT from
  the standard kernels.  They are still available as custom compile
  options.

Modified:
  head/sys/amd64/conf/GENERIC
  head/sys/arm/conf/CRB
  head/sys/i386/conf/GENERIC
  head/sys/mips/conf/OCTEON1
  head/sys/modules/aic7xxx/ahc/Makefile
  head/sys/modules/aic7xxx/ahd/Makefile
  head/sys/powerpc/conf/GENERIC
  head/sys/powerpc/conf/GENERIC64
  head/sys/sparc64/conf/GENERIC

Modified: head/sys/amd64/conf/GENERIC
==============================================================================
--- head/sys/amd64/conf/GENERIC	Wed Nov 29 23:28:40 2017	(r326376)
+++ head/sys/amd64/conf/GENERIC	Wed Nov 29 23:41:49 2017	(r326377)
@@ -123,11 +123,7 @@ device		siis			# SiliconImage SiI3124/SiI3132/SiI3531 
 
 # SCSI Controllers
 device		ahc			# AHA2940 and onboard AIC7xxx devices
-options 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
-					# output.  Adds ~128k to driver.
 device		ahd			# AHA39320/29320 and onboard AIC79xx devices
-options 	AHD_REG_PRETTY_PRINT	# Print register bitfields in debug
-					# output.  Adds ~215k to driver.
 device		esp			# AMD Am53C974 (Tekram DC-390(T))
 device		hptiop			# Highpoint RocketRaid 3xxx series
 device		isp			# Qlogic family

Modified: head/sys/arm/conf/CRB
==============================================================================
--- head/sys/arm/conf/CRB	Wed Nov 29 23:28:40 2017	(r326376)
+++ head/sys/arm/conf/CRB	Wed Nov 29 23:41:49 2017	(r326377)
@@ -84,11 +84,6 @@ device		"7seg"
 
 # SCSI Controllers
 
-#options 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
-					# output.  Adds ~128k to driver.
-#options 	AHD_REG_PRETTY_PRINT	# Print register bitfields in debug
-					# output.  Adds ~215k to driver.
-
 options 	XSCALE_CACHE_READ_WRITE_ALLOCATE
 device		md
 device		random			# Entropy device

Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC	Wed Nov 29 23:28:40 2017	(r326376)
+++ head/sys/i386/conf/GENERIC	Wed Nov 29 23:41:49 2017	(r326377)
@@ -120,11 +120,6 @@ device		siis			# SiliconImage SiI3124/SiI3132/SiI3531 
 
 # SCSI Controllers
 device		ahc			# AHA2940 and onboard AIC7xxx devices
-options 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
-					# output.  Adds ~128k to driver.
-device		ahd			# AHA39320/29320 and onboard AIC79xx devices
-options 	AHD_REG_PRETTY_PRINT	# Print register bitfields in debug
-					# output.  Adds ~215k to driver.
 device		esp			# AMD Am53C974 (Tekram DC-390(T))
 device		hptiop			# Highpoint RocketRaid 3xxx series
 device		isp			# Qlogic family

Modified: head/sys/mips/conf/OCTEON1
==============================================================================
--- head/sys/mips/conf/OCTEON1	Wed Nov 29 23:28:40 2017	(r326376)
+++ head/sys/mips/conf/OCTEON1	Wed Nov 29 23:41:49 2017	(r326377)
@@ -118,11 +118,7 @@ options 	ROOTDEVNAME=\"ufs:cf0s2a\"	# Default root fil
 
 # SCSI Controllers
 device		ahc		# AHA2940 and onboard AIC7xxx devices
-options 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
-					# output.  Adds ~128k to driver.
 device		ahd		# AHA39320/29320 and onboard AIC79xx devices
-options 	AHD_REG_PRETTY_PRINT	# Print register bitfields in debug
-					# output.  Adds ~215k to driver.
 device		esp		# AMD Am53C974 (Tekram DC-390(T))
 device		hptiop		# Highpoint RocketRaid 3xxx series
 device		isp		# Qlogic family

Modified: head/sys/modules/aic7xxx/ahc/Makefile
==============================================================================
--- head/sys/modules/aic7xxx/ahc/Makefile	Wed Nov 29 23:28:40 2017	(r326376)
+++ head/sys/modules/aic7xxx/ahc/Makefile	Wed Nov 29 23:41:49 2017	(r326377)
@@ -9,7 +9,7 @@ KMOD=	ahc
 SUBDIR+= ahc_isa ahc_pci
 
 GENSRCS= aic7xxx_seq.h aic7xxx_reg.h
-AHC_REG_PRETTY_PRINT=1
+# AHC_REG_PRETTY_PRINT=1
 REG_PRINT_OPT=
 .ifdef AHC_REG_PRETTY_PRINT
 GENSRCS+= aic7xxx_reg_print.c

Modified: head/sys/modules/aic7xxx/ahd/Makefile
==============================================================================
--- head/sys/modules/aic7xxx/ahd/Makefile	Wed Nov 29 23:28:40 2017	(r326376)
+++ head/sys/modules/aic7xxx/ahd/Makefile	Wed Nov 29 23:41:49 2017	(r326377)
@@ -6,7 +6,7 @@ KMOD=	ahd
 
 GENSRCS= aic79xx_seq.h aic79xx_reg.h
 REG_PRINT_OPT=
-AHD_REG_PRETTY_PRINT=1
+# AHD_REG_PRETTY_PRINT=1
 .ifdef AHD_REG_PRETTY_PRINT
 GENSRCS += aic79xx_reg_print.c
 CFLAGS+= -DAHD_REG_PRETTY_PRINT=1

Modified: head/sys/powerpc/conf/GENERIC
==============================================================================
--- head/sys/powerpc/conf/GENERIC	Wed Nov 29 23:28:40 2017	(r326376)
+++ head/sys/powerpc/conf/GENERIC	Wed Nov 29 23:41:49 2017	(r326377)
@@ -118,8 +118,6 @@ device		siis		# SiliconImage SiI3124/SiI3132/SiI3531 S
 # SCSI Controllers
 device		ahc		# AHA2940 and onboard AIC7xxx devices
 options 	AHC_ALLOW_MEMIO	# Attempt to use memory mapped I/O
-options 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
-					# output.  Adds ~128k to driver.
 device		isp		# Qlogic family
 device		ispfw		# Firmware module for Qlogic host adapters
 device		mpt		# LSI-Logic MPT-Fusion

Modified: head/sys/powerpc/conf/GENERIC64
==============================================================================
--- head/sys/powerpc/conf/GENERIC64	Wed Nov 29 23:28:40 2017	(r326376)
+++ head/sys/powerpc/conf/GENERIC64	Wed Nov 29 23:41:49 2017	(r326377)
@@ -114,8 +114,6 @@ device		siis		# SiliconImage SiI3124/SiI3132/SiI3531 S
 # SCSI Controllers
 device		ahc		# AHA2940 and onboard AIC7xxx devices
 options 	AHC_ALLOW_MEMIO	# Attempt to use memory mapped I/O
-options 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
-					# output.  Adds ~128k to driver.
 device		isp		# Qlogic family
 device		ispfw		# Firmware module for Qlogic host adapters
 device		mpt		# LSI-Logic MPT-Fusion

Modified: head/sys/sparc64/conf/GENERIC
==============================================================================
--- head/sys/sparc64/conf/GENERIC	Wed Nov 29 23:28:40 2017	(r326376)
+++ head/sys/sparc64/conf/GENERIC	Wed Nov 29 23:41:49 2017	(r326377)
@@ -112,8 +112,6 @@ device		siis		# SiliconImage SiI3124/SiI3132/SiI3531 S
 # SCSI Controllers
 device		ahc		# AHA2940 and onboard AIC7xxx devices
 options 	AHC_ALLOW_MEMIO	# Attempt to use memory mapped I/O
-options 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
-					# output.  Adds ~128k to driver.
 device		esp		# AMD Am53C974, Sun ESP and FAS	families
 device		isp		# Qlogic family
 device		ispfw		# Firmware module for Qlogic host adapters


More information about the svn-src-all mailing list