drivers: net: cpsw: fix dt probe for one port ethernet
authorMugunthan V N <mugunthanvnm@ti.com>
Mon, 2 Dec 2013 07:23:39 +0000 (12:53 +0530)
committerDavid S. Miller <davem@davemloft.net>
Mon, 2 Dec 2013 21:55:30 +0000 (16:55 -0500)
When only one port of the two port is pinned out, then dt probe is failing
because second port phy is not found. fixing this by checking the number of
slaves and breaking the loop.

Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ti/cpsw.c

index 7536a4c01293a9b3e97bf1171941b6724213ad6c..a91f0c9d4511e23a9189f84916d4be158157813d 100644 (file)
@@ -1816,6 +1816,8 @@ static int cpsw_probe_dt(struct cpsw_platform_data *data,
                }
 
                i++;
+               if (i == data->slaves)
+                       break;
        }
 
        return 0;