From 5a8b662ea6af8ec3315771ce1e713661e21b9bac Mon Sep 17 00:00:00 2001 From: Navdeep Parhar Date: Fri, 16 Dec 2016 06:30:07 +0000 Subject: [PATCH] cxgbe(4): Fix typo in an unused macro. MFC after: 3 days Sponsored by: Chelsio Communications --- sys/dev/cxgbe/common/t4_msg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/cxgbe/common/t4_msg.h b/sys/dev/cxgbe/common/t4_msg.h index 3264bac65a87..830743b91a8f 100644 --- a/sys/dev/cxgbe/common/t4_msg.h +++ b/sys/dev/cxgbe/common/t4_msg.h @@ -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