diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2020-07-06 06:27:58 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-07-08 00:41:05 +0200 |
commit | f3631ab08eeb67ad023ba1b37004ecba0158f93f (patch) | |
tree | c71cc2bbc12802028a4319d89c9f3df471e9b4a0 /net/Kconfig | |
parent | net: phy: Register ethtool PHY operations (diff) | |
download | linux-f3631ab08eeb67ad023ba1b37004ecba0158f93f.tar.xz linux-f3631ab08eeb67ad023ba1b37004ecba0158f93f.zip |
net: ethtool: Remove PHYLIB direct dependency
Now that we have introduced ethtool_phy_ops and the PHY library
dynamically registers its operations with that function pointer, we can
remove the direct PHYLIB dependency in favor of using dynamic
operations.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/Kconfig')
-rw-r--r-- | net/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/Kconfig b/net/Kconfig index d1672280d6a4..3831206977a1 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -455,7 +455,6 @@ config FAILOVER config ETHTOOL_NETLINK bool "Netlink interface for ethtool" default y - depends on PHYLIB=y || PHYLIB=n help An alternative userspace interface for ethtool based on generic netlink. It provides better extensibility and some new features, |