summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2014-10-11 01:50:38 +0200
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2015-04-15 13:40:44 +0200
commit2d8ea651b6da79047b6fa729863d25b5eb9e15d7 (patch)
treeefe56498e4487561a3d5676bc2c1d8033bd0b6bc /drivers
parent98d99a69f52eb35a3a479068a4d7b46a15bcdb60 (diff)
e1000: unprogrammed i210 operation hack
Hack driver to avoid the following error for now. This is required for unprogrammed i210 operation. e1000: e1000#0: ERROR: Hardware Initialization Failed (cherry picked from commit 02bf24ad4a7c882e25771f656b973d5458695cf0) (cherry picked from commit 68cecfdbe342f800a0b1f10a1f8fb019b491f04b)
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/e1000.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/e1000.c b/drivers/net/e1000.c
index cd4422215f..535b1f021e 100644
--- a/drivers/net/e1000.c
+++ b/drivers/net/e1000.c
@@ -4381,7 +4381,9 @@ e1000_get_phy_cfg_done(struct e1000_hw *hw)
if (!timeout) {
DEBUGOUT("MNG configuration cycle has not "
"completed.\n");
- return -E1000_ERR_RESET;
+//hack to avoid the following error on unprogrammed i210 for now
+//e1000: e1000#0: ERROR: Hardware Initialization Failed
+// return -E1000_ERR_RESET;
}
break;
}