diff options
author | Hemanth Puranik <hpuranik@codeaurora.org> | 2018-05-16 03:10:53 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-05-16 20:33:27 +0200 |
commit | 9e6881d3665688d14b2ad4860f4e28af4ee02b63 (patch) | |
tree | 9872708030fc007fff6088acd0b5a7f7c4ebaefd /drivers/net/ethernet/qualcomm/emac/emac-mac.c | |
parent | Merge branch 'rmnet-next' (diff) | |
download | linux-9e6881d3665688d14b2ad4860f4e28af4ee02b63.tar.xz linux-9e6881d3665688d14b2ad4860f4e28af4ee02b63.zip |
net: qcom/emac: Encapsulate sgmii ops under one structure
This patch introduces ops structure for sgmii, This by ensures that
we do not need dummy functions in case of emulation platforms.
Signed-off-by: Hemanth Puranik <hpuranik@codeaurora.org>
Acked-by: Timur Tabi <timur@codeaurora.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/qualcomm/emac/emac-mac.c')
-rw-r--r-- | drivers/net/ethernet/qualcomm/emac/emac-mac.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/net/ethernet/qualcomm/emac/emac-mac.c b/drivers/net/ethernet/qualcomm/emac/emac-mac.c index d5a32b7c7dc5..092718a03786 100644 --- a/drivers/net/ethernet/qualcomm/emac/emac-mac.c +++ b/drivers/net/ethernet/qualcomm/emac/emac-mac.c @@ -920,14 +920,13 @@ static void emac_mac_rx_descs_refill(struct emac_adapter *adpt, static void emac_adjust_link(struct net_device *netdev) { struct emac_adapter *adpt = netdev_priv(netdev); - struct emac_sgmii *sgmii = &adpt->phy; struct phy_device *phydev = netdev->phydev; if (phydev->link) { emac_mac_start(adpt); - sgmii->link_up(adpt); + emac_sgmii_link_change(adpt, true); } else { - sgmii->link_down(adpt); + emac_sgmii_link_change(adpt, false); emac_mac_stop(adpt); } |