net: phy: smsc: enable edpd tunable support
authorHeiner Kallweit <hkallweit1@gmail.com>
Sun, 2 Apr 2023 15:17:35 +0000 (17:17 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 3 Apr 2023 09:08:43 +0000 (10:08 +0100)
Enable EDPD PHY tunable support for all drivers using
lan87xx_read_status.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/smsc.c

index 0eba69a..6929307 100644 (file)
@@ -469,6 +469,9 @@ static struct phy_driver smsc_phy_driver[] = {
        .get_strings    = smsc_get_strings,
        .get_stats      = smsc_get_stats,
 
+       .get_tunable    = smsc_phy_get_tunable,
+       .set_tunable    = smsc_phy_set_tunable,
+
        .suspend        = genphy_suspend,
        .resume         = genphy_resume,
 }, {
@@ -513,6 +516,9 @@ static struct phy_driver smsc_phy_driver[] = {
        .get_strings    = smsc_get_strings,
        .get_stats      = smsc_get_stats,
 
+       .get_tunable    = smsc_phy_get_tunable,
+       .set_tunable    = smsc_phy_set_tunable,
+
        .suspend        = genphy_suspend,
        .resume         = genphy_resume,
 }, {
@@ -539,6 +545,9 @@ static struct phy_driver smsc_phy_driver[] = {
        .get_strings    = smsc_get_strings,
        .get_stats      = smsc_get_stats,
 
+       .get_tunable    = smsc_phy_get_tunable,
+       .set_tunable    = smsc_phy_set_tunable,
+
        .suspend        = genphy_suspend,
        .resume         = genphy_resume,
 }, {
@@ -569,6 +578,9 @@ static struct phy_driver smsc_phy_driver[] = {
        .get_strings    = smsc_get_strings,
        .get_stats      = smsc_get_stats,
 
+       .get_tunable    = smsc_phy_get_tunable,
+       .set_tunable    = smsc_phy_set_tunable,
+
        .suspend        = genphy_suspend,
        .resume         = genphy_resume,
 } };