Commit 55d8f053 authored by Florian Fainelli's avatar Florian Fainelli Committed by David S. Miller

net: phy: Register ethtool PHY operations

Utilize ethtool_set_ethtool_phy_ops to register a suitable set of PHY
ethtool operations in a dynamic fashion such that ethtool will no longer
directy reference PHY library symbols.
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4895d780
...@@ -3027,6 +3027,11 @@ static struct phy_driver genphy_driver = { ...@@ -3027,6 +3027,11 @@ static struct phy_driver genphy_driver = {
.set_loopback = genphy_loopback, .set_loopback = genphy_loopback,
}; };
static const struct ethtool_phy_ops phy_ethtool_phy_ops = {
.start_cable_test = phy_start_cable_test,
.start_cable_test_tdr = phy_start_cable_test_tdr,
};
static int __init phy_init(void) static int __init phy_init(void)
{ {
int rc; int rc;
...@@ -3035,6 +3040,7 @@ static int __init phy_init(void) ...@@ -3035,6 +3040,7 @@ static int __init phy_init(void)
if (rc) if (rc)
return rc; return rc;
ethtool_set_ethtool_phy_ops(&phy_ethtool_phy_ops);
features_init(); features_init();
rc = phy_driver_register(&genphy_c45_driver, THIS_MODULE); rc = phy_driver_register(&genphy_c45_driver, THIS_MODULE);
...@@ -3056,6 +3062,7 @@ static void __exit phy_exit(void) ...@@ -3056,6 +3062,7 @@ static void __exit phy_exit(void)
phy_driver_unregister(&genphy_c45_driver); phy_driver_unregister(&genphy_c45_driver);
phy_driver_unregister(&genphy_driver); phy_driver_unregister(&genphy_driver);
mdio_bus_exit(); mdio_bus_exit();
ethtool_set_ethtool_phy_ops(NULL);
} }
subsys_initcall(phy_init); subsys_initcall(phy_init);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment