Set switch_reason to CH_SWITCH_SCAN_BYPASS_DPD during frequency scanning
in order to disable radar pattern detector
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
        };
        int ret;
 
-       if ((chandef->chan->flags & IEEE80211_CHAN_RADAR) &&
-           chandef->chan->dfs_state != NL80211_DFS_AVAILABLE)
+       if (dev->mt76.hw->conf.flags & IEEE80211_CONF_OFFCHANNEL)
+               req.switch_reason = CH_SWITCH_SCAN_BYPASS_DPD;
+       else if ((chandef->chan->flags & IEEE80211_CHAN_RADAR) &&
+                chandef->chan->dfs_state != NL80211_DFS_AVAILABLE)
                req.switch_reason = CH_SWITCH_DFS;
        else
                req.switch_reason = CH_SWITCH_NORMAL;