The removed patches were integrated upstream. The brcmf_driver_work workqueue was removed in brcmfmac with kernel 5.10.42, the asynchronous call was covered to a synchronous call. There is no need to wait any more. This part was removed manually from this patch: brcm/860-brcmfmac-register-wiphy-s-during-module_init.patch Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
20 lines
509 B
Diff
20 lines
509 B
Diff
--- a/drivers/net/wireless/marvell/mwl8k.c
|
|
+++ b/drivers/net/wireless/marvell/mwl8k.c
|
|
@@ -6280,6 +6280,8 @@ static int mwl8k_probe(struct pci_dev *p
|
|
|
|
priv->running_bsses = 0;
|
|
|
|
+ wait_for_completion(&priv->firmware_loading_complete);
|
|
+
|
|
return rc;
|
|
|
|
err_stop_firmware:
|
|
@@ -6313,8 +6315,6 @@ static void mwl8k_remove(struct pci_dev
|
|
return;
|
|
priv = hw->priv;
|
|
|
|
- wait_for_completion(&priv->firmware_loading_complete);
|
|
-
|
|
if (priv->fw_state == FW_STATE_ERROR) {
|
|
mwl8k_hw_reset(priv);
|
|
goto unmap;
|