DFS: Remove dead assignment
set_dfs_state() return value is not currently checked anywhere, so remove the dead assignment to avoid static analyzer complaints. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
f1a36a53a5
commit
c0e46bb7d4
1 changed files with 2 additions and 3 deletions
|
@ -897,9 +897,8 @@ int hostapd_dfs_radar_detected(struct hostapd_iface *iface, int freq,
|
||||||
freq, ht_enabled, chan_offset, chan_width, cf1, cf2);
|
freq, ht_enabled, chan_offset, chan_width, cf1, cf2);
|
||||||
|
|
||||||
/* mark radar frequency as invalid */
|
/* mark radar frequency as invalid */
|
||||||
res = set_dfs_state(iface, freq, ht_enabled, chan_offset,
|
set_dfs_state(iface, freq, ht_enabled, chan_offset, chan_width,
|
||||||
chan_width, cf1, cf2,
|
cf1, cf2, HOSTAPD_CHAN_DFS_UNAVAILABLE);
|
||||||
HOSTAPD_CHAN_DFS_UNAVAILABLE);
|
|
||||||
|
|
||||||
/* Skip if reported radar event not overlapped our channels */
|
/* Skip if reported radar event not overlapped our channels */
|
||||||
res = dfs_are_channels_overlapped(iface, freq, chan_width, cf1, cf2);
|
res = dfs_are_channels_overlapped(iface, freq, chan_width, cf1, cf2);
|
||||||
|
|
Loading…
Reference in a new issue