mac80211: Fix incorrect condition when checking rx timestamp
If the driver reports the rx timestamp at PLCP start, mac80211 can
only handle legacy encoding, but the code checks that the encoding
is not legacy. Fix this.
Fixes: da6a4352e7
("mac80211: separate encoding/bandwidth from flags")
Signed-off-by: Avraham Stern <avraham.stern@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
Родитель
769dc04db3
Коммит
204a7dbcb2
|
@ -1531,7 +1531,7 @@ ieee80211_have_rx_timestamp(struct ieee80211_rx_status *status)
|
||||||
return true;
|
return true;
|
||||||
/* can't handle non-legacy preamble yet */
|
/* can't handle non-legacy preamble yet */
|
||||||
if (status->flag & RX_FLAG_MACTIME_PLCP_START &&
|
if (status->flag & RX_FLAG_MACTIME_PLCP_START &&
|
||||||
status->encoding != RX_ENC_LEGACY)
|
status->encoding == RX_ENC_LEGACY)
|
||||||
return true;
|
return true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче