From: Michael Chan Date: Sat, 20 Feb 2016 00:43:21 +0000 (-0500) Subject: bnxt_en: Failure to update PHY is not fatal condition. X-Git-Tag: Ubuntu-5.2.0-15.16~9743^2~12^2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=ba41d46fe03223279054e58d570069fdc62fb768;p=mirror_ubuntu-eoan-kernel.git bnxt_en: Failure to update PHY is not fatal condition. If we fail to update the PHY, we should print a warning and continue. The current code to exit is buggy as it has not freed up the NIC resources yet. Signed-off-by: Michael Chan Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt.c b/drivers/net/ethernet/broadcom/bnxt/bnxt.c index 78f6b5a2b6a0..8ab000dd52d9 100644 --- a/drivers/net/ethernet/broadcom/bnxt/bnxt.c +++ b/drivers/net/ethernet/broadcom/bnxt/bnxt.c @@ -4642,7 +4642,7 @@ static int __bnxt_open_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init) if (link_re_init) { rc = bnxt_update_phy_setting(bp); if (rc) - goto open_err; + netdev_warn(bp->dev, "failed to update phy settings\n"); } if (irq_re_init) {