Add the vendor commands that must be used by the network manager to allow proper operation of iwlmei. * Send information on the AP CSME is connected to * Notify the userspace when roaming is forbidden * Allow the userspace to require ownership Co-Developed-by: Ayala Beker <ayala.beker@intel.com> Signed-off-by: Ayala Beker <ayala.beker@intel.com> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> v6: remove the VENDOR_CMDS Kconfig option and make the whole infra depend on IWLMEI directly v7: remove // comments remove an unneeded function Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Link: https://lore.kernel.org/r/20211112062814.7502-5-emmanuel.grumbach@intel.com
15 lines
575 B
Makefile
15 lines
575 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_IWLMVM) += iwlmvm.o
|
|
iwlmvm-y += fw.o mac80211.o nvm.o ops.o phy-ctxt.o mac-ctxt.o
|
|
iwlmvm-y += utils.o rx.o rxmq.o tx.o binding.o quota.o sta.o sf.o
|
|
iwlmvm-y += scan.o time-event.o rs.o rs-fw.o
|
|
iwlmvm-y += power.o coex.o
|
|
iwlmvm-y += tt.o offloading.o tdls.o
|
|
iwlmvm-y += ftm-responder.o ftm-initiator.o
|
|
iwlmvm-y += rfi.o
|
|
iwlmvm-$(CONFIG_IWLWIFI_DEBUGFS) += debugfs.o debugfs-vif.o
|
|
iwlmvm-$(CONFIG_IWLWIFI_LEDS) += led.o
|
|
iwlmvm-$(CONFIG_PM) += d3.o
|
|
iwlmvm-$(CONFIG_IWLMEI) += vendor-cmd.o
|
|
|
|
ccflags-y += -I $(srctree)/$(src)/../
|