aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/e1000e/es2lan.c
diff options
context:
space:
mode:
authorBruce Allan <bruce.w.allan@intel.com>2009-11-20 18:27:59 -0500
committerDavid S. Miller <davem@davemloft.net>2009-11-21 14:34:25 -0500
commitde39b7523348640f4c0e662e430c67594d858a08 (patch)
tree12256a9145acb20ddfb3cd25c545ee80726669b6 /drivers/net/e1000e/es2lan.c
parent53ec5498d107a61b84944351d32324ce52788b74 (diff)
e1000e: do not error out on identification LED init failure
A failure to initialize the identification LED is not a fatal condition and should allow the init path to continue. Signed-off-by: Bruce Allan <bruce.w.allan@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/e1000e/es2lan.c')
-rw-r--r--drivers/net/e1000e/es2lan.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/net/e1000e/es2lan.c b/drivers/net/e1000e/es2lan.c
index 8a089569c6e1..6ba1228836e7 100644
--- a/drivers/net/e1000e/es2lan.c
+++ b/drivers/net/e1000e/es2lan.c
@@ -803,10 +803,9 @@ static s32 e1000_init_hw_80003es2lan(struct e1000_hw *hw)
803 803
804 /* Initialize identification LED */ 804 /* Initialize identification LED */
805 ret_val = e1000e_id_led_init(hw); 805 ret_val = e1000e_id_led_init(hw);
806 if (ret_val) { 806 if (ret_val)
807 e_dbg("Error initializing identification LED\n"); 807 e_dbg("Error initializing identification LED\n");
808 return ret_val; 808 /* This is not fatal and we should not stop init due to this */
809 }
810 809
811 /* Disabling VLAN filtering */ 810 /* Disabling VLAN filtering */
812 e_dbg("Initializing the IEEE VLAN\n"); 811 e_dbg("Initializing the IEEE VLAN\n");