diff options
| author | Philippe Reynes <tremyfr@gmail.com> | 2017-01-01 19:02:46 +0100 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2017-01-02 16:59:10 -0500 |
| commit | e938ed150f1ed9410ff50d19ac32efdd26c77903 (patch) | |
| tree | 5ce505a1e88ee1bd925635437468d03abb851080 /drivers/net/ethernet/sfc/falcon/qt202x_phy.c | |
| parent | net: mdio: add mdio45_ethtool_ksettings_get (diff) | |
| download | linux-e938ed150f1ed9410ff50d19ac32efdd26c77903.tar.gz linux-e938ed150f1ed9410ff50d19ac32efdd26c77903.zip | |
net: sfc: falcon: use new api ethtool_{get|set}_link_ksettings
The ethtool api {get|set}_settings is deprecated.
We move this driver to new api {get|set}_link_ksettings.
Signed-off-by: Philippe Reynes <tremyfr@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/sfc/falcon/qt202x_phy.c')
| -rw-r--r-- | drivers/net/ethernet/sfc/falcon/qt202x_phy.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/net/ethernet/sfc/falcon/qt202x_phy.c b/drivers/net/ethernet/sfc/falcon/qt202x_phy.c index d29331652548..f5e0f18d4ea8 100644 --- a/drivers/net/ethernet/sfc/falcon/qt202x_phy.c +++ b/drivers/net/ethernet/sfc/falcon/qt202x_phy.c @@ -437,9 +437,10 @@ static int qt202x_phy_reconfigure(struct ef4_nic *efx) return 0; } -static void qt202x_phy_get_settings(struct ef4_nic *efx, struct ethtool_cmd *ecmd) +static void qt202x_phy_get_link_ksettings(struct ef4_nic *efx, + struct ethtool_link_ksettings *cmd) { - mdio45_ethtool_gset(&efx->mdio, ecmd); + mdio45_ethtool_ksettings_get(&efx->mdio, cmd); } static void qt202x_phy_remove(struct ef4_nic *efx) @@ -487,8 +488,8 @@ const struct ef4_phy_operations falcon_qt202x_phy_ops = { .poll = qt202x_phy_poll, .fini = ef4_port_dummy_op_void, .remove = qt202x_phy_remove, - .get_settings = qt202x_phy_get_settings, - .set_settings = ef4_mdio_set_settings, + .get_link_ksettings = qt202x_phy_get_link_ksettings, + .set_link_ksettings = ef4_mdio_set_link_ksettings, .test_alive = ef4_mdio_test_alive, .get_module_eeprom = qt202x_phy_get_module_eeprom, .get_module_info = qt202x_phy_get_module_info, |
