Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Dec 2016 06:30:08 +0000 (UTC)
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r310152 - head/sys/dev/cxgbe/common
Message-ID:  <201612160630.uBG6U8os031563@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: np
Date: Fri Dec 16 06:30:07 2016
New Revision: 310152
URL: https://svnweb.freebsd.org/changeset/base/310152

Log:
  cxgbe(4): Fix typo in an unused macro.
  
  MFC after:	3 days
  Sponsored by:	Chelsio Communications

Modified:
  head/sys/dev/cxgbe/common/t4_msg.h

Modified: head/sys/dev/cxgbe/common/t4_msg.h
==============================================================================
--- head/sys/dev/cxgbe/common/t4_msg.h	Fri Dec 16 06:25:51 2016	(r310151)
+++ head/sys/dev/cxgbe/common/t4_msg.h	Fri Dec 16 06:30:07 2016	(r310152)
@@ -2026,7 +2026,7 @@ struct cpl_rx_pkt {
  * RX_ERROR_IP_HDR_LEN, RX_ERROR_ETH_HDR_LEN
  */
 #define S_T6_COMPR_RXERR_LEN    1
-#define V_T6_COMPR_RXERR_LEN(x) ((x) << S_COMPR_T6_RXERR_LEN)
+#define V_T6_COMPR_RXERR_LEN(x) ((x) << S_T6_COMPR_RXERR_LEN)
 #define F_T6_COMPR_RXERR_LEN    V_COMPR_T6_RXERR_LEN(1U)
 
 #define S_T6_COMPR_RXERR_TCP_OPT    2



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