diff options
-rw-r--r-- | drivers/net/ethernet/intel/ixgbe/ixgbe_dcb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_dcb.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_dcb.c index 83bf7cc3fbf0..3d44b15fb286 100644 --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_dcb.c +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_dcb.c | |||
@@ -184,7 +184,7 @@ void ixgbe_dcb_unpack_pfc(struct ixgbe_dcb_config *cfg, u8 *pfc_en) | |||
184 | 184 | ||
185 | *pfc_en = 0; | 185 | *pfc_en = 0; |
186 | for (i = 0; i < MAX_TRAFFIC_CLASS; i++) | 186 | for (i = 0; i < MAX_TRAFFIC_CLASS; i++) |
187 | *pfc_en |= (cfg->tc_config[i].dcb_pfc & 0xF) << i; | 187 | *pfc_en |= !!(cfg->tc_config[i].dcb_pfc & 0xF) << i; |
188 | } | 188 | } |
189 | 189 | ||
190 | void ixgbe_dcb_unpack_refill(struct ixgbe_dcb_config *cfg, int direction, | 190 | void ixgbe_dcb_unpack_refill(struct ixgbe_dcb_config *cfg, int direction, |