svn commit: r311068 - stable/10/sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Mon Jan 2 09:18:17 UTC 2017


Author: arybchik
Date: Mon Jan  2 09:18:16 2017
New Revision: 311068
URL: https://svnweb.freebsd.org/changeset/base/311068

Log:
  MFC r310708
  
  sfxge(4): do not initialize enumerated type variable to another type
  
  Fix build warning generated by ICC.
  
  Sponsored by:   Solarflare Communications, Inc.

Modified:
  stable/10/sys/dev/sfxge/common/efx_nic.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/sfxge/common/efx_nic.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_nic.c	Mon Jan  2 09:17:29 2017	(r311067)
+++ stable/10/sys/dev/sfxge/common/efx_nic.c	Mon Jan  2 09:18:16 2017	(r311068)
@@ -556,7 +556,7 @@ efx_nic_destroy(
 	EFSYS_ASSERT3U(enp->en_magic, ==, EFX_NIC_MAGIC);
 	EFSYS_ASSERT3U(enp->en_mod_flags, ==, 0);
 
-	enp->en_family = 0;
+	enp->en_family = EFX_FAMILY_INVALID;
 	enp->en_esip = NULL;
 	enp->en_esbp = NULL;
 	enp->en_eslp = NULL;


More information about the svn-src-all mailing list