Skip to content

Commit 175e69e

Browse files
ItamarShalevInteljmberg-intel
authored andcommitted
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: 6895d74 ("wifi: iwlwifi: mld: initialize regulatory early") Signed-off-by: Itamar Shalev <[email protected]> Acked-by: Miri Korenblit <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Johannes Berg <[email protected]>
1 parent 8e089e7 commit 175e69e

File tree

1 file changed

+1
-0
lines changed
  • drivers/net/wireless/intel/iwlwifi/mld

1 file changed

+1
-0
lines changed

drivers/net/wireless/intel/iwlwifi/mld/mld.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ void iwl_construct_mld(struct iwl_mld *mld, struct iwl_trans *trans,
7575

7676
/* Setup async RX handling */
7777
spin_lock_init(&mld->async_handlers_lock);
78+
INIT_LIST_HEAD(&mld->async_handlers_list);
7879
wiphy_work_init(&mld->async_handlers_wk,
7980
iwl_mld_async_handlers_wk);
8081

0 commit comments

Comments
 (0)