mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 07:51:16 -04:00
staging: wilc1000: rename u8OppEnable of struct join_bss_param
This patch renames u8OppEnable of struct join_bss_param to opp_enabled to avoid CamelCase naming convention. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Tony Cho <tony.cho@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
7a8d51d776
commit
d72b33caee
@@ -220,7 +220,7 @@ struct join_bss_param {
|
||||
u8 rsn_cap[2];
|
||||
u32 tsf;
|
||||
u8 noa_enabled;
|
||||
u8 u8OppEnable;
|
||||
u8 opp_enabled;
|
||||
u8 u8CtWindow;
|
||||
u8 u8Count;
|
||||
u8 u8Index;
|
||||
@@ -1182,10 +1182,9 @@ static s32 Handle_Connect(struct host_if_drv *hif_drv,
|
||||
*(pu8CurrByte++) = ((ptstrJoinBssParam->tsf) >> 24) & 0xFF;
|
||||
|
||||
*(pu8CurrByte++) = ptstrJoinBssParam->u8Index;
|
||||
*(pu8CurrByte++) = ptstrJoinBssParam->opp_enabled;
|
||||
|
||||
*(pu8CurrByte++) = ptstrJoinBssParam->u8OppEnable;
|
||||
|
||||
if (ptstrJoinBssParam->u8OppEnable)
|
||||
if (ptstrJoinBssParam->opp_enabled)
|
||||
*(pu8CurrByte++) = ptstrJoinBssParam->u8CtWindow;
|
||||
|
||||
*(pu8CurrByte++) = ptstrJoinBssParam->u8Count;
|
||||
@@ -4948,10 +4947,11 @@ static void *host_int_ParseJoinBssParam(tstrNetworkInfo *ptstrNetworkInfo)
|
||||
pNewJoinBssParam->u8Index = pu8IEs[index + 9];
|
||||
|
||||
if (pu8IEs[index + 10] & BIT(7)) {
|
||||
pNewJoinBssParam->u8OppEnable = 1;
|
||||
pNewJoinBssParam->opp_enabled = 1;
|
||||
pNewJoinBssParam->u8CtWindow = pu8IEs[index + 10];
|
||||
} else
|
||||
pNewJoinBssParam->u8OppEnable = 0;
|
||||
} else {
|
||||
pNewJoinBssParam->opp_enabled = 0;
|
||||
}
|
||||
|
||||
PRINT_D(GENERIC_DBG, "P2P Dump\n");
|
||||
for (i = 0; i < pu8IEs[index + 7]; i++)
|
||||
|
||||
Reference in New Issue
Block a user