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

Commit e5b02f64 authored by Grazvydas Ignotas's avatar Grazvydas Ignotas Committed by John W. Linville
Browse files

wl1251: only call ieee80211_beacon_loss in managed mode



ieee80211_beacon_loss() is only to be called in managed mode,
but the firmware may send the sync timeout event at any time,
so do a check before calling.

Signed-off-by: default avatarGrazvydas Ignotas <notasas@gmail.com>
Tested-by: default avatarPali Rohár <pali.rohar@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 863bdbc9
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -124,10 +124,11 @@ static int wl1251_event_process(struct wl1251 *wl, struct event_mailbox *mbox)
			return ret;
	}

	if (wl->vif && vector & SYNCHRONIZATION_TIMEOUT_EVENT_ID) {
	if (vector & SYNCHRONIZATION_TIMEOUT_EVENT_ID) {
		wl1251_debug(DEBUG_EVENT, "SYNCHRONIZATION_TIMEOUT_EVENT");

		/* indicate to the stack, that beacons have been lost */
		if (wl->vif && wl->vif->type == NL80211_IFTYPE_STATION)
			ieee80211_beacon_loss(wl->vif);
	}