diff options
author | Michal Kubecek <mkubecek@suse.cz> | 2019-12-11 10:58:29 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-12-12 17:07:05 -0800 |
commit | d44e13108b6da4e1c4778bd654a470208e02ef37 (patch) | |
tree | c51947d97236e93656df928cb9b6055e03a950b6 /net/ethtool/Makefile | |
parent | 9ce48e5a09ea63a7867647af68caa0605d99757d (diff) | |
download | linux-d44e13108b6da4e1c4778bd654a470208e02ef37.tar.gz linux-d44e13108b6da4e1c4778bd654a470208e02ef37.tar.bz2 linux-d44e13108b6da4e1c4778bd654a470208e02ef37.zip |
ethtool: move string arrays into common file
Introduce file net/ethtool/common.c for code shared by ioctl and netlink
ethtool interface. Move name tables of features, RSS hash functions,
tunables and PHY tunables into this file.
Signed-off-by: Michal Kubecek <mkubecek@suse.cz>
Reviewed-by: Jiri Pirko <jiri@mellanox.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
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 7e5c9eb85c90..f68387618973 100644 --- a/net/ethtool/Makefile +++ b/net/ethtool/Makefile @@ -1,3 +1,3 @@ # SPDX-License-Identifier: GPL-2.0-only -obj-y += ioctl.o +obj-y += ioctl.o common.o |