station: remove signal_low check for FT-over-DS

If the AP advertises FT-over-DS support it likely wants us to use
it. Additionally signal_low is probably going to be true since IWD
has started a roam attempt.
This commit is contained in:
James Prestwood 2021-09-27 10:04:04 -07:00 committed by Denis Kenzior
parent 61c804f5b2
commit 7e95480094
1 changed files with 1 additions and 2 deletions

View File

@ -2015,8 +2015,7 @@ static void station_transition_start(struct station *station,
vendor_ies = network_info_get_extra_ies(info, bss, &iov_elems);
handshake_state_set_vendor_ies(hs, vendor_ies, iov_elems);
/* FT-over-DS can be better suited for these situations */
if ((hs->mde[4] & 1) && station->signal_low) {
if ((hs->mde[4] & 1)) {
ret = netdev_fast_transition_over_ds(station->netdev,
bss, station->connected_bss,
station_fast_transition_cb);