diff options
author | Michal Kubecek <mkubecek@suse.cz> | 2019-12-11 12:58:24 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-12-13 04:07:05 +0300 |
commit | 9ce48e5a09ea63a7867647af68caa0605d99757d (patch) | |
tree | 2f9e3dfe1d0642153533e4d300328c14740908de /net/Makefile | |
parent | 32d5109a9d864aea3981f0b5ea736eee4e11b42a (diff) | |
download | linux-9ce48e5a09ea63a7867647af68caa0605d99757d.tar.xz |
ethtool: move to its own directory
The ethtool netlink interface is going to be split into multiple files so
that it will be more convenient to put all of them in a separate directory
net/ethtool. Start by moving current ethtool.c with ioctl interface into
this directory and renaming it to ioctl.c.
Signed-off-by: Michal Kubecek <mkubecek@suse.cz>
Acked-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/Makefile')
-rw-r--r-- | net/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/Makefile b/net/Makefile index 449fc0b221f8..848303d98d3d 100644 --- a/net/Makefile +++ b/net/Makefile @@ -13,7 +13,7 @@ obj-$(CONFIG_NET) += $(tmp-y) # LLC has to be linked before the files in net/802/ obj-$(CONFIG_LLC) += llc/ -obj-$(CONFIG_NET) += ethernet/ 802/ sched/ netlink/ bpf/ +obj-$(CONFIG_NET) += ethernet/ 802/ sched/ netlink/ bpf/ ethtool/ obj-$(CONFIG_NETFILTER) += netfilter/ obj-$(CONFIG_INET) += ipv4/ obj-$(CONFIG_TLS) += tls/ |