mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 08:47:44 -04:00
staging: wilc1000: corrected order to pack join param buffer
Modified packing order for join param as expected by firmware. Signed-off-by: Ajay Singh <ajay.kathat@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
6cd4fa5ab6
commit
dc18fa1de9
@@ -11,8 +11,6 @@
|
||||
|
||||
#define FALSE_FRMWR_CHANNEL 100
|
||||
|
||||
#define REAL_JOIN_REQ 0
|
||||
|
||||
struct rcvd_async_info {
|
||||
u8 *buffer;
|
||||
u32 len;
|
||||
@@ -436,15 +434,14 @@ static int wilc_send_connect_wid(struct wilc_vif *vif)
|
||||
memcpy(cur_byte, bss_param->rsn_cap, sizeof(bss_param->rsn_cap));
|
||||
cur_byte += sizeof(bss_param->rsn_cap);
|
||||
|
||||
*(cur_byte++) = REAL_JOIN_REQ;
|
||||
*(cur_byte++) = bss_param->noa_enabled;
|
||||
|
||||
if (bss_param->noa_enabled) {
|
||||
put_unaligned_le32(bss_param->tsf, cur_byte);
|
||||
cur_byte += 4;
|
||||
|
||||
*(cur_byte++) = bss_param->opp_enabled;
|
||||
*(cur_byte++) = bss_param->idx;
|
||||
*(cur_byte++) = bss_param->opp_enabled;
|
||||
|
||||
if (bss_param->opp_enabled)
|
||||
*(cur_byte++) = bss_param->ct_window;
|
||||
|
||||
Reference in New Issue
Block a user