net/hns3: disable MAC status report interrupt

Disable the MAC status report interrupt which hns3 driver not concern
currently.

Fixes: 5f8845f4ba8f ("net/hns3: process MAC interrupt")
Cc: stable@dpdk.org

Signed-off-by: Hongbo Zheng <zhenghongbo3@huawei.com>
Signed-off-by: Min Hu (Connor) <humin29@huawei.com>
This commit is contained in:
Hongbo Zheng 2021-04-23 17:56:34 +08:00 committed by Ferruh Yigit
parent cdf6a5fbc5
commit 5d17dec5a8

View File

@ -4895,8 +4895,6 @@ hns3_update_link_status(struct hns3_hw *hw)
if (state != hw->mac.link_status) {
hw->mac.link_status = state;
hns3_warn(hw, "Link status change to %s!", state ? "up" : "down");
hns3_config_mac_tnl_int(hw,
state == ETH_LINK_UP ? true : false);
return true;
}