Commit 175e69e3 authored by Itamar Shalev's avatar Itamar Shalev Committed by Johannes Berg
Browse files

wifi: iwlwifi: restore missing initialization of async_handlers_list



The initialization of async_handlers_list
was accidentally removed in a previous change.
This patch restores the missing initialization
to ensure proper handler registration.

Fixes: 6895d74c ("wifi: iwlwifi: mld: initialize regulatory early")
Signed-off-by: default avatarItamar Shalev <itamar.shalev@intel.com>
Acked-by: default avatarMiri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://patch.msgid.link/20250423092503.35206-1-itamar.shalev@intel.com


Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 8e089e7b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -75,6 +75,7 @@ void iwl_construct_mld(struct iwl_mld *mld, struct iwl_trans *trans,

	/* Setup async RX handling */
	spin_lock_init(&mld->async_handlers_lock);
	INIT_LIST_HEAD(&mld->async_handlers_list);
	wiphy_work_init(&mld->async_handlers_wk,
			iwl_mld_async_handlers_wk);