aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/e1000e/ich8lan.c
diff options
context:
space:
mode:
authorBruce Allan <bruce.w.allan@intel.com>2009-11-20 23:27:59 +0000
committerDavid S. Miller <davem@davemloft.net>2009-11-21 11:34:25 -0800
commitde39b7523348640f4c0e662e430c67594d858a08 (patch)
tree12256a9145acb20ddfb3cd25c545ee80726669b6 /drivers/net/e1000e/ich8lan.c
parente1000e: set pm_qos DMA latency requirement per interface when needed (diff)
downloadlinux-dev-de39b7523348640f4c0e662e430c67594d858a08.tar.xz
linux-dev-de39b7523348640f4c0e662e430c67594d858a08.zip
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 '')
-rw-r--r--drivers/net/e1000e/ich8lan.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/net/e1000e/ich8lan.c b/drivers/net/e1000e/ich8lan.c
index 2c1d08e04436..fe6dc3de9ac7 100644
--- a/drivers/net/e1000e/ich8lan.c
+++ b/drivers/net/e1000e/ich8lan.c
@@ -2722,10 +2722,9 @@ static s32 e1000_init_hw_ich8lan(struct e1000_hw *hw)
/* Initialize identification LED */
ret_val = mac->ops.id_led_init(hw);
- if (ret_val) {
+ if (ret_val)
e_dbg("Error initializing identification LED\n");
- return ret_val;
- }
+ /* This is not fatal and we should not stop init due to this */
/* Setup the receive address. */
e1000e_init_rx_addrs(hw, mac->rar_entry_count);