mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 18:43:33 +02:00
- Add firmware API definitions related to NAN.
- Indicate support for NAN Device interface operation, if supported
by the firmware.
- Add support for starting and stopping NAN cluster functionality.
The NAN cluster operation is offloaded to the FW, which notifies
the driver on:
- cluster events: Start/Join cluster.
- Discovery Window (DW) end, which allows the driver to flush the
HW queues and update the higher layers
Signed-off-by: Ilan Peer <ilan.peer@intel.com>
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://patch.msgid.link/20251110180612.76dd4d45b91e.I5abfab64b4f27bed442aeca6231ffebad979cad6@changeid
13 lines
553 B
Makefile
13 lines
553 B
Makefile
# SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
|
|
obj-$(CONFIG_IWLMLD) += iwlmld.o
|
|
obj-$(CONFIG_IWLWIFI_KUNIT_TESTS) += tests/
|
|
|
|
iwlmld-y += mld.o notif.o mac80211.o fw.o power.o iface.o link.o rx.o mcc.o session-protect.o phy.o
|
|
iwlmld-y += scan.o sta.o tx.o coex.o tlc.o agg.o key.o regulatory.o ap.o thermal.o roc.o stats.o
|
|
iwlmld-y += low_latency.o mlo.o ptp.o time_sync.o ftm-initiator.o nan.o
|
|
iwlmld-$(CONFIG_IWLWIFI_DEBUGFS) += debugfs.o
|
|
iwlmld-$(CONFIG_IWLWIFI_LEDS) += led.o
|
|
iwlmld-$(CONFIG_PM_SLEEP) += d3.o
|
|
|
|
subdir-ccflags-y += -I$(src)/../
|