nvethernet: update code to use updated get_hw_feat api

Bug 200671160

Change-Id: If9d1de5c51382ad3bc87e401ddf9b61f52d70254
Signed-off-by: rakesh goyal <rgoyal@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvidia/+/2488876
Reviewed-by: Bhadram Varka <vbhadram@nvidia.com>
Reviewed-by: Narayan Reddy <narayanr@nvidia.com>
Reviewed-by: Ashutosh Jha <ajha@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
GVS: Gerrit_Virtual_Submit
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
rakesh goyal
2021-02-16 14:44:29 +05:30
committed by Revanth Kumar Uppala
parent b427be9267
commit 8363bf6e9d

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved.
* Copyright (c) 2018-2021, NVIDIA CORPORATION. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
@@ -4330,7 +4330,11 @@ static int ether_probe(struct platform_device *pdev)
goto err_dma_mask;
}
osi_get_hw_features(osi_core, &pdata->hw_feat);
ret = osi_get_hw_features(osi_core, &pdata->hw_feat);
if (ret < 0) {
dev_err(&pdev->dev, "failed to get HW features\n");
goto err_dma_mask;
}
/* Set netdev features based on hw features */
ether_set_ndev_features(ndev, pdata);