Thread (9 messages) flat view 9 messages, 4 authors, 2016-05-09

Re: [PATCH v2 2/3] net: ethernet: fec: use phydev from struct net_device

From: Ben Hutchings <hidden>
Date: 2016-05-08 22:22:36
Also in: lkml

On Sun, 2016-05-08 at 23:44 +0200, Philippe Reynes wrote:
The private structure contain a pointer to phydev, but the structure
net_device already contain such pointer. So we can remove the pointer
phydev in the private structure, and update the driver to use the one
contained in struct net_device.
But there is no central code that updates the pointer, so:

[...]
quoted hunk ↗ jump to hunk
@@ -1928,7 +1926,6 @@ static int fec_enet_mii_probe(struct net_device *ndev)
 
 	phy_dev->advertising = phy_dev->supported;
 
-	fep->phy_dev = phy_dev;
you need to assign ndev->phydev here

[...]
quoted hunk ↗ jump to hunk
@@ -2875,8 +2869,7 @@ fec_enet_close(struct net_device *ndev)
 		fec_stop(ndev);
 	}
 
-	phy_disconnect(fep->phy_dev);
-	fep->phy_dev = NULL;
+	phy_disconnect(ndev->phydev);
[...]

and you need to set it to NULL here.

Ben.
 
-- 
Ben Hutchings
I haven't lost my mind; it's backed up on tape somewhere.

Attachments

Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help