Message ID | b4ff9b51-092b-4d44-bfce-c95342a05b51@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | d7933a2c7f87667a87a2c0d0c5a1617c414c6024 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] ethtool: remove ethtool_eee_use_linkmodes | expand |
On Tue, Mar 05, 2024 at 10:26:10PM +0100, Heiner Kallweit wrote: > After 292fac464b01 ("net: ethtool: eee: Remove legacy _u32 from keee") > this function has no user any longer. > > Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Andrew
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski <kuba@kernel.org>: On Tue, 5 Mar 2024 22:26:10 +0100 you wrote: > After 292fac464b01 ("net: ethtool: eee: Remove legacy _u32 from keee") > this function has no user any longer. > > Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> > --- > net/ethtool/common.c | 5 ----- > net/ethtool/common.h | 1 - > 2 files changed, 6 deletions(-) Here is the summary with links: - [net-next] ethtool: remove ethtool_eee_use_linkmodes https://git.kernel.org/netdev/net-next/c/d7933a2c7f87 You are awesome, thank you!
diff --git a/net/ethtool/common.c b/net/ethtool/common.c index ce486cec3..6b2a360dc 100644 --- a/net/ethtool/common.c +++ b/net/ethtool/common.c @@ -712,8 +712,3 @@ ethtool_forced_speed_maps_init(struct ethtool_forced_speed_map *maps, u32 size) } } EXPORT_SYMBOL_GPL(ethtool_forced_speed_maps_init); - -bool ethtool_eee_use_linkmodes(const struct ethtool_keee *eee) -{ - return !linkmode_empty(eee->supported); -} diff --git a/net/ethtool/common.h b/net/ethtool/common.h index 0f2b5f7ea..28b8aaaf9 100644 --- a/net/ethtool/common.h +++ b/net/ethtool/common.h @@ -55,6 +55,5 @@ int ethtool_get_module_eeprom_call(struct net_device *dev, struct ethtool_eeprom *ee, u8 *data); bool __ethtool_dev_mm_supported(struct net_device *dev); -bool ethtool_eee_use_linkmodes(const struct ethtool_keee *eee); #endif /* _ETHTOOL_COMMON_H */
After 292fac464b01 ("net: ethtool: eee: Remove legacy _u32 from keee") this function has no user any longer. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> --- net/ethtool/common.c | 5 ----- net/ethtool/common.h | 1 - 2 files changed, 6 deletions(-)