diff options
author | Michal Kubecek <mkubecek@suse.cz> | 2020-03-28 00:01:38 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-03-29 22:32:36 -0700 |
commit | b7eeefe72eb09a5dd9b259ab970d77d3e0fccdbd (patch) | |
tree | 64d64b6ff1227480322ea98052da87efd4f6cd7c /net/ethtool/Makefile | |
parent | bf37faa3867b370a77e9359a27daebdbec604cfd (diff) | |
download | linux-b7eeefe72eb09a5dd9b259ab970d77d3e0fccdbd.tar.gz linux-b7eeefe72eb09a5dd9b259ab970d77d3e0fccdbd.tar.bz2 linux-b7eeefe72eb09a5dd9b259ab970d77d3e0fccdbd.zip |
ethtool: provide EEE settings with EEE_GET request
Implement EEE_GET request to get EEE settings of a network device. These
are traditionally available via ETHTOOL_GEEE ioctl request.
The netlink interface allows reporting EEE status for all link modes
supported by kernel but only first 32 link modes are provided at the moment
as only those are reported by the ethtool_ops callback and drivers.
v2: fix alignment (whitespace only)
Signed-off-by: Michal Kubecek <mkubecek@suse.cz>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ethtool/Makefile')
-rw-r--r-- | net/ethtool/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ethtool/Makefile b/net/ethtool/Makefile index 28589ad5fd8a..a790f408aa5d 100644 --- a/net/ethtool/Makefile +++ b/net/ethtool/Makefile @@ -6,4 +6,4 @@ obj-$(CONFIG_ETHTOOL_NETLINK) += ethtool_nl.o ethtool_nl-y := netlink.o bitset.o strset.o linkinfo.o linkmodes.o \ linkstate.o debug.o wol.o features.o privflags.o rings.o \ - channels.o coalesce.o pause.o + channels.o coalesce.o pause.o eee.o |