Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 67131a1d authored by Vladimir Kondratiev's avatar Vladimir Kondratiev Committed by Kalle Valo
Browse files

wil6210: skip HW version check for chip debugging



When loading with debug_fw flag, do not bail out on
unknown chipId

Signed-off-by: default avatarVladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 8ad6600f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -738,9 +738,6 @@ int wil_reset(struct wil6210_priv *wil, bool load_fw)

	wil_dbg_misc(wil, "%s()\n", __func__);

	if (wil->hw_version == HW_VER_UNKNOWN)
		return -ENODEV;

	WARN_ON(!mutex_is_locked(&wil->mutex));
	WARN_ON(test_bit(wil_status_napi_en, wil->status));

@@ -755,6 +752,9 @@ int wil_reset(struct wil6210_priv *wil, bool load_fw)
		return 0;
	}

	if (wil->hw_version == HW_VER_UNKNOWN)
		return -ENODEV;

	cancel_work_sync(&wil->disconnect_worker);
	wil6210_disconnect(wil, NULL, WLAN_REASON_DEAUTH_LEAVING, false);
	wil_bcast_fini(wil);