diff options
author | Lin Yun Sheng <linyunsheng@huawei.com> | 2017-06-30 11:44:15 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-03 11:01:15 +0200 |
commit | f0f9b4ed23381d97cde2ac64248198bc43608e6d (patch) | |
tree | 0f771555ccba033f1d5a922785ac5d0f68e53c68 /drivers/net/phy/marvell.c | |
parent | net/mlx5: fix memcpy limit? (diff) | |
download | linux-f0f9b4ed23381d97cde2ac64248198bc43608e6d.tar.xz linux-f0f9b4ed23381d97cde2ac64248198bc43608e6d.zip |
net: phy: Add phy loopback support in net phy framework
This patch add set_loopback in phy_driver, which is used by MAC
driver to enable or disable phy loopback. it also add a generic
genphy_loopback function, which use BMCR loopback bit to enable
or disable loopback.
Signed-off-by: Lin Yun Sheng <linyunsheng@huawei.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/marvell.c')
-rw-r--r-- | drivers/net/phy/marvell.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index 8400403b3f62..5d314f143aea 100644 --- a/drivers/net/phy/marvell.c +++ b/drivers/net/phy/marvell.c @@ -2171,6 +2171,7 @@ static struct phy_driver marvell_drivers[] = { .get_sset_count = marvell_get_sset_count, .get_strings = marvell_get_strings, .get_stats = marvell_get_stats, + .set_loopback = genphy_loopback, }, { .phy_id = MARVELL_PHY_ID_88E1540, |