diff options
author | Johannes Berg <johannes.berg@intel.com> | 2014-06-04 17:31:56 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-06-23 11:05:33 +0200 |
commit | b7ffbd7ef6751f6cde73082346e365738daf00d2 (patch) | |
tree | 849c2b771a45b68a6733698c5de030ae100de952 /net/mac80211/Makefile | |
parent | ba9030c20a2def223d9b993cb3dfdd3aab3d2b31 (diff) |
cfg80211: make ethtool the driver's responsibility
Currently, cfg80211 tries to implement ethtool, but that doesn't
really scale well, with all the different operations. Make the
lower-level driver responsible for it, which currently only has
an effect on mac80211. It will similarly not scale well at that
level though, since mac80211 also has many drivers.
To cleanly implement this in mac80211, introduce a new file and
move some code to appropriate places.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/Makefile')
-rw-r--r-- | net/mac80211/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/Makefile b/net/mac80211/Makefile index 4409bf506594..7273d2796dd1 100644 --- a/net/mac80211/Makefile +++ b/net/mac80211/Makefile @@ -17,6 +17,7 @@ mac80211-y := \ aes_ccm.o \ aes_cmac.o \ cfg.o \ + ethtool.o \ rx.o \ spectmgmt.o \ tx.o \ |