svn commit: r291848 - head/sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Sat Dec 5 08:26:18 UTC 2015


Author: arybchik
Date: Sat Dec  5 08:26:16 2015
New Revision: 291848
URL: https://svnweb.freebsd.org/changeset/base/291848

Log:
  sfxge: cleanup: remove set but not used trailer variable
  
  Required to build with -Werror=unused-but-set-variable.
  
  Sponsored by:   Solarflare Communications, Inc.
  MFC after:      2 days

Modified:
  head/sys/dev/sfxge/common/hunt_nvram.c

Modified: head/sys/dev/sfxge/common/hunt_nvram.c
==============================================================================
--- head/sys/dev/sfxge/common/hunt_nvram.c	Sat Dec  5 08:24:54 2015	(r291847)
+++ head/sys/dev/sfxge/common/hunt_nvram.c	Sat Dec  5 08:26:16 2015	(r291848)
@@ -853,7 +853,6 @@ hunt_nvram_buf_segment_size(
 	efx_rc_t rc;
 	tlv_cursor_t cursor;
 	struct tlv_partition_header *header;
-	struct tlv_partition_trailer *trailer;
 	uint32_t cksum;
 	int pos;
 	uint32_t *end_tag_position;
@@ -883,7 +882,6 @@ hunt_nvram_buf_segment_size(
 		rc = EINVAL;
 		goto fail4;
 	}
-	trailer = (struct tlv_partition_trailer *)tlv_item(&cursor);
 
 	if ((rc = tlv_advance(&cursor)) != 0) {
 		rc = EINVAL;


More information about the svn-src-all mailing list