diff options
author | Philippe Reynes <tremyfr@gmail.com> | 2016-06-19 20:39:08 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-06-19 16:15:55 -0700 |
commit | 715a022703e2d2e2e8e607fcd82f483bf8494202 (patch) | |
tree | 59907357b9dfa81189e762a4fca2a54b7d178762 /drivers/net/ethernet/broadcom/bcmsysport.h | |
parent | 90789322c3bb9ece244f1fc6bf62667eae9814f2 (diff) | |
download | linux-715a022703e2d2e2e8e607fcd82f483bf8494202.tar.bz2 |
net: ethernet: bcmsysport: use phydev from struct net_device
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.
Signed-off-by: Philippe Reynes <tremyfr@gmail.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/broadcom/bcmsysport.h')
-rw-r--r-- | drivers/net/ethernet/broadcom/bcmsysport.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/ethernet/broadcom/bcmsysport.h b/drivers/net/ethernet/broadcom/bcmsysport.h index f28bf545d7f4..1c82e3da69a7 100644 --- a/drivers/net/ethernet/broadcom/bcmsysport.h +++ b/drivers/net/ethernet/broadcom/bcmsysport.h @@ -670,7 +670,6 @@ struct bcm_sysport_priv { /* PHY device */ struct device_node *phy_dn; - struct phy_device *phydev; phy_interface_t phy_interface; int old_pause; int old_link; |