Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 31 Dec 2016 11:10:01 +0000 (UTC)
From:      Andrew Rybchenko <arybchik@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r310928 - stable/11/sys/dev/sfxge/common
Message-ID:  <201612311110.uBVBA1jL041595@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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",



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612311110.uBVBA1jL041595>