On Mar 31, 2009, at 3:27 AM, Grant Likely wrote:

From: Grant Likely <grant.lik...@secretlab.ca>

This patch simplifies the driver by making use of more common code.

Signed-off-by: Grant Likely <grant.lik...@secretlab.ca>
---

drivers/net/gianfar.c | 103 +++++++++++++++++ +-------------------------------
drivers/net/gianfar.h |    3 +
2 files changed, 40 insertions(+), 66 deletions(-)


diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c
index 65f5587..c22eba9 100644
@@ -699,23 +657,38 @@ static int init_phy(struct net_device *dev)


+       if (priv->tbi_node) {
+               priv->tbiphy = of_phy_connect(dev, priv->tbi_node, &adjust_link,
+                                             0, interface);
+               if (!priv->tbiphy) {
+                       dev_err(&dev->dev, "error: Could not attach to TBI\n");
+                       goto err_tbiphy;
+               }
+       }

I don't believe we need this. Certainly, the current code doesn't do anything like this. The TBI node is a special internal PHY used to manage SGMII/TBI links.


Andy
_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev

Reply via email to