diff options
-rw-r--r-- | drivers/net/ethernet/intel/i40e/i40e_dcb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/i40e/i40e_dcb.c b/drivers/net/ethernet/intel/i40e/i40e_dcb.c index 3ce43588592d..6e1466756760 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_dcb.c +++ b/drivers/net/ethernet/intel/i40e/i40e_dcb.c | |||
@@ -459,7 +459,7 @@ static void i40e_cee_to_dcb_v1_config( | |||
459 | sync = (status & I40E_TLV_STATUS_SYNC) ? 1 : 0; | 459 | sync = (status & I40E_TLV_STATUS_SYNC) ? 1 : 0; |
460 | oper = (status & I40E_TLV_STATUS_OPER) ? 1 : 0; | 460 | oper = (status & I40E_TLV_STATUS_OPER) ? 1 : 0; |
461 | /* Add APPs if Error is False and Oper/Sync is True */ | 461 | /* Add APPs if Error is False and Oper/Sync is True */ |
462 | if (!err && sync && oper) { | 462 | if (!err) { |
463 | /* CEE operating configuration supports FCoE/iSCSI/FIP only */ | 463 | /* CEE operating configuration supports FCoE/iSCSI/FIP only */ |
464 | dcbcfg->numapps = I40E_CEE_OPER_MAX_APPS; | 464 | dcbcfg->numapps = I40E_CEE_OPER_MAX_APPS; |
465 | 465 | ||