mirror of https://github.com/F-Stack/f-stack.git
Fix I40E_DEV_ID_10G_BASE_T_X722 issue.
This commit is contained in:
parent
ba143ce866
commit
13c736b9d7
|
@ -1514,7 +1514,8 @@ eth_i40e_dev_init(struct rte_eth_dev *dev, void *init_params __rte_unused)
|
|||
}
|
||||
/* Firmware of SFP x722 does not support 802.1ad frames ability */
|
||||
if (hw->device_id == I40E_DEV_ID_SFP_X722 ||
|
||||
hw->device_id == I40E_DEV_ID_SFP_I_X722)
|
||||
hw->device_id == I40E_DEV_ID_SFP_I_X722 ||
|
||||
hw->device_id == I40E_DEV_ID_10G_BASE_T_X722)
|
||||
hw->flags &= ~I40E_HW_FLAG_802_1AD_CAPABLE;
|
||||
|
||||
PMD_INIT_LOG(INFO, "FW %d.%d API %d.%d NVM %02d.%02d.%02d eetrack %04x",
|
||||
|
|
Loading…
Reference in New Issue