staging: r8188eu: fix coccinelle warnings
drivers/staging/rtl8188eu/core/rtw_mlme_ext.c:8030:3-9: Replace memcpy with struct assignment Generated by: coccinelle/misc/memcpy-assign.cocci Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
072dc1146f
commit
19485a6dbd
|
@ -8030,7 +8030,7 @@ static int rtw_scan_ch_decision(struct adapter *padapter, struct rtw_ieee80211_c
|
|||
set_idx = rtw_ch_set_search_ch(pmlmeext->channel_set, in[i].hw_value);
|
||||
if (in[i].hw_value && !(in[i].flags & RTW_IEEE80211_CHAN_DISABLED) &&
|
||||
set_idx >= 0) {
|
||||
memcpy(&out[j], &in[i], sizeof(struct rtw_ieee80211_channel));
|
||||
out[j] = in[i];
|
||||
|
||||
if (pmlmeext->channel_set[set_idx].ScanType == SCAN_PASSIVE)
|
||||
out[j].flags &= RTW_IEEE80211_CHAN_PASSIVE_SCAN;
|
||||
|
|
Loading…
Reference in New Issue