From: Mugunthan V N Date: Thu, 28 Apr 2016 10:06:04 +0000 (+0530) Subject: drivers: net: cpsw: fix cpsw dp parse when num slaves as 1 X-Git-Tag: KARO-TXSD-2017-03-15~1013^2~16 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b2003c5458e883c691f3a7f5f770e6ed36e1b9d7;p=karo-tx-uboot.git drivers: net: cpsw: fix cpsw dp parse when num slaves as 1 On some boards number of slaves can be 1 when only one port ethernet is pinned out. So do not break when slave_index and num slaves check fails, instead continue to parse the next child. Signed-off-by: Mugunthan V N Reviewed-by: Tom Rini Acked-by: Joe Hershberger --- diff --git a/drivers/net/cpsw.c b/drivers/net/cpsw.c index 7104754463..971ebf0d68 100644 --- a/drivers/net/cpsw.c +++ b/drivers/net/cpsw.c @@ -1209,10 +1209,8 @@ static int cpsw_eth_ofdata_to_platdata(struct udevice *dev) if (!strncmp(name, "slave", 5)) { u32 phy_id[2]; - if (slave_index >= priv->data.slaves) { - printf("error: num slaves and slave nodes did not match\n"); - return -EINVAL; - } + if (slave_index >= priv->data.slaves) + continue; phy_mode = fdt_getprop(fdt, subnode, "phy-mode", NULL); if (phy_mode) priv->data.slave_data[slave_index].phy_if =