diff options
| author | Itamar Shalev <[email protected]> | 2025-04-23 09:25:02 +0000 |
|---|---|---|
| committer | Johannes Berg <[email protected]> | 2025-04-23 12:59:06 +0000 |
| commit | 175e69e33c66904dfe910c5f43edfe5c95b32f0c (patch) | |
| tree | 0f912739afc16fa319ee6de7d4539d77fa367208 | |
| parent | wifi: brcm80211: fmac: Add error handling for brcmf_usb_dl_writeimage() (diff) | |
| download | kernel-175e69e33c66904dfe910c5f43edfe5c95b32f0c.tar.gz kernel-175e69e33c66904dfe910c5f43edfe5c95b32f0c.zip | |
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: 6895d74c11d8 ("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]>
| -rw-r--r-- | drivers/net/wireless/intel/iwlwifi/mld/mld.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mld/mld.c b/drivers/net/wireless/intel/iwlwifi/mld/mld.c index 4a0842a46a8d..73d2166a4c25 100644 --- a/drivers/net/wireless/intel/iwlwifi/mld/mld.c +++ b/drivers/net/wireless/intel/iwlwifi/mld/mld.c @@ -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); |
