diff options
author | Kalle Valo <kvalo@kernel.org> | 2023-02-27 14:17:31 +0200 |
---|---|---|
committer | Kalle Valo <kvalo@kernel.org> | 2023-03-13 15:42:14 +0200 |
commit | f79cbc77abde22dd01ac90393a7bfb283d9d50a3 (patch) | |
tree | dce7224cca90f7ab24e56536e6a372f802286088 /drivers/net/wireless/Makefile | |
parent | 95b744508d4d5135ae2a096ff3f0ee882bcc52b3 (diff) |
wifi: move mac80211_hwsim and virt_wifi to virtual directory
To clean up drivers/net/wireless move the virtual drivers to a new virtual
directory. I did consider adding CONFIG_WLAN_VENDOR_VIRTUAL like other vendors
have but then dropped the idea as we are not real drivers.
There should be no changes in compilation or in Kconfig options, merely moving
files. The order in menuconfig is slightly changed, the virtual drivers are now
last in the list.
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20230227121732.8967-2-kvalo@kernel.org
Diffstat (limited to 'drivers/net/wireless/Makefile')
-rw-r--r-- | drivers/net/wireless/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/wireless/Makefile b/drivers/net/wireless/Makefile index a61cf6c90343..1b697cfe0a13 100644 --- a/drivers/net/wireless/Makefile +++ b/drivers/net/wireless/Makefile @@ -29,6 +29,4 @@ obj-$(CONFIG_PCMCIA_WL3501) += wl3501_cs.o obj-$(CONFIG_USB_NET_RNDIS_WLAN) += rndis_wlan.o -obj-$(CONFIG_MAC80211_HWSIM) += mac80211_hwsim.o - -obj-$(CONFIG_VIRT_WIFI) += virt_wifi.o +obj-$(CONFIG_WLAN) += virtual/ |