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>
 
        /* Initialize identification LED */
        ret_val = e1000e_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 */
 
        /* Disabling VLAN filtering */
        e_dbg("Initializing the IEEE VLAN\n");
 
 
        /* Initialize identification LED */
        ret_val = e1000e_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 */
 
        /* Disabling VLAN filtering */
        e_dbg("Initializing the IEEE VLAN\n");
 
 
        /* 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);