Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 Jan 2017 09:18:16 +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-10@freebsd.org
Subject:   svn commit: r311068 - stable/10/sys/dev/sfxge/common
Message-ID:  <201701020918.v029IG09096552@repo.freebsd.org>

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



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