diff mbox

[U-Boot] driver: net: ldpaa_eth: Fix missing bracket issue

Message ID 1477380602-2564-1-git-send-email-priyanka.jain@nxp.com
State Accepted
Commit b7401d0917257ee7c023feb40cd62627da025491
Delegated to: York Sun
Headers show

Commit Message

Priyanka Jain Oct. 25, 2016, 7:30 a.m. UTC
Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com>
---
 drivers/net/ldpaa_eth/ldpaa_eth.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
diff mbox

Patch

diff --git a/drivers/net/ldpaa_eth/ldpaa_eth.c b/drivers/net/ldpaa_eth/ldpaa_eth.c
index 75b2b6b..4e61700 100644
--- a/drivers/net/ldpaa_eth/ldpaa_eth.c
+++ b/drivers/net/ldpaa_eth/ldpaa_eth.c
@@ -420,13 +420,14 @@  static int ldpaa_eth_open(struct eth_device *net_dev, bd_t *bd)
 		goto err_dpmac_setup;
 
 #ifdef CONFIG_PHYLIB
-	if (priv->phydev)
+	if (priv->phydev) {
 		err = phy_startup(priv->phydev);
 		if (err) {
 			printf("%s: Could not initialize\n",
 			       priv->phydev->dev->name);
 			goto err_dpamc_bind;
 		}
+	}
 #else
 	priv->phydev = (struct phy_device *)malloc(sizeof(struct phy_device));
 	memset(priv->phydev, 0, sizeof(struct phy_device));