nvethernet: Disable EEE feature

Issue: Enabling EEE feature causing random SSH failures
       in GVS tests.
Fix: Disable EEE feature until root cause issue

Bug 2813867

Change-Id: I462cb7efbe7916a7591e8f0a2dca6ba1cbf9addc
Signed-off-by: Mahesh Patil <maheshp@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvidia/+/2294331
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Reviewed-by: Automatic_Commit_Validation_User
Reviewed-by: Srinivas Ramachandran <srinivasra@nvidia.com>
Reviewed-by: Ashutosh Jha <ajha@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
GVS: Gerrit_Virtual_Submit
This commit is contained in:
Mahesh Patil
2020-02-13 11:00:09 -08:00
committed by Revanth Kumar Uppala
parent dbdc5e7764
commit 405a6ed9ed

View File

@@ -1231,7 +1231,8 @@ static int ether_therm_init(struct ether_priv_data *pdata)
static inline void ether_init_eee_params(struct ether_priv_data *pdata)
{
if (pdata->hw_feat.eee_sel) {
pdata->eee_enabled = OSI_ENABLE;
/* default, keep it disabled */
pdata->eee_enabled = OSI_DISABLE;
} else {
pdata->eee_enabled = OSI_DISABLE;
}