mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 07:46:43 +07:00
brcmfmac: fix big endian bug in i-scan.
ssid len is 32 bit and needs endian conversion for big endian systems. Cc: stable <stable@vger.kernel.org> Signed-off-by: Hante Meuleman <meuleman@broadcom.com> Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
022e1d0680
commit
ed205b3619
@ -500,8 +500,10 @@ static void wl_iscan_prep(struct brcmf_scan_params_le *params_le,
|
||||
params_le->active_time = cpu_to_le32(-1);
|
||||
params_le->passive_time = cpu_to_le32(-1);
|
||||
params_le->home_time = cpu_to_le32(-1);
|
||||
if (ssid && ssid->SSID_len)
|
||||
memcpy(¶ms_le->ssid_le, ssid, sizeof(struct brcmf_ssid));
|
||||
if (ssid && ssid->SSID_len) {
|
||||
params_le->ssid_le.SSID_len = cpu_to_le32(ssid->SSID_len);
|
||||
memcpy(¶ms_le->ssid_le.SSID, ssid->SSID, ssid->SSID_len);
|
||||
}
|
||||
}
|
||||
|
||||
static s32
|
||||
|
Loading…
Reference in New Issue
Block a user