svn commit: r310928 - stable/11/sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Sat Dec 31 11:10:02 UTC 2016


Author: arybchik
Date: Sat Dec 31 11:10:01 2016
New Revision: 310928
URL: https://svnweb.freebsd.org/changeset/base/310928

Log:
  MFC r310691
  
  sfxge(4): make strings array pointer itself immutable
  
  Found by DPDK checkpatches.sh
  
  Sponsored by:   Solarflare Communications, Inc.

Modified:
  stable/11/sys/dev/sfxge/common/efx_mon.c
  stable/11/sys/dev/sfxge/common/efx_port.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/sfxge/common/efx_mon.c
==============================================================================
--- stable/11/sys/dev/sfxge/common/efx_mon.c	Sat Dec 31 11:09:01 2016	(r310927)
+++ stable/11/sys/dev/sfxge/common/efx_mon.c	Sat Dec 31 11:10:01 2016	(r310928)
@@ -40,7 +40,7 @@ __FBSDID("$FreeBSD$");
 
 #if EFSYS_OPT_NAMES
 
-static const char	*__efx_mon_name[] = {
+static const char * const __efx_mon_name[] = {
 	"",
 	"sfx90x0",
 	"sfx91x0",

Modified: stable/11/sys/dev/sfxge/common/efx_port.c
==============================================================================
--- stable/11/sys/dev/sfxge/common/efx_port.c	Sat Dec 31 11:09:01 2016	(r310927)
+++ stable/11/sys/dev/sfxge/common/efx_port.c	Sat Dec 31 11:10:01 2016	(r310928)
@@ -172,7 +172,7 @@ fail1:
 
 #if EFSYS_OPT_NAMES
 
-static const char 	*__efx_loopback_type_name[] = {
+static const char * const __efx_loopback_type_name[] = {
 	"OFF",
 	"DATA",
 	"GMAC",


More information about the svn-src-stable mailing list