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",
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to