staging: wilc1000: rename strHostIFSetBeacon
This patch renames strHostIFSetBeacon to beacon_info to avoid CamelCase naming convention. Signed-off-by: Tony Cho <tony.cho@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7f33fecde1
commit
a98491e50d
@ -391,7 +391,7 @@ union message_body {
|
|||||||
struct key_attr key_info;
|
struct key_attr key_info;
|
||||||
struct cfg_param_attr cfg_info;
|
struct cfg_param_attr cfg_info;
|
||||||
struct channel_attr channel_info;
|
struct channel_attr channel_info;
|
||||||
struct beacon_attr strHostIFSetBeacon;
|
struct beacon_attr beacon_info;
|
||||||
struct add_sta_param strAddStaParam;
|
struct add_sta_param strAddStaParam;
|
||||||
struct del_sta strDelStaParam;
|
struct del_sta strDelStaParam;
|
||||||
struct add_sta_param strEditStaParam;
|
struct add_sta_param strEditStaParam;
|
||||||
@ -4134,7 +4134,7 @@ static int hostIFthread(void *pvArg)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case HOST_IF_MSG_ADD_BEACON:
|
case HOST_IF_MSG_ADD_BEACON:
|
||||||
Handle_AddBeacon(msg.drvHandler, &msg.body.strHostIFSetBeacon);
|
Handle_AddBeacon(msg.drvHandler, &msg.body.beacon_info);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case HOST_IF_MSG_DEL_BEACON:
|
case HOST_IF_MSG_DEL_BEACON:
|
||||||
@ -6548,7 +6548,7 @@ s32 host_int_add_beacon(tstrWILC_WFIDrv *hWFIDrv, u32 u32Interval,
|
|||||||
s32 s32Error = 0;
|
s32 s32Error = 0;
|
||||||
tstrWILC_WFIDrv *pstrWFIDrv = (tstrWILC_WFIDrv *)hWFIDrv;
|
tstrWILC_WFIDrv *pstrWFIDrv = (tstrWILC_WFIDrv *)hWFIDrv;
|
||||||
struct host_if_msg msg;
|
struct host_if_msg msg;
|
||||||
struct beacon_attr *pstrSetBeaconParam = &msg.body.strHostIFSetBeacon;
|
struct beacon_attr *pstrSetBeaconParam = &msg.body.beacon_info;
|
||||||
|
|
||||||
if (pstrWFIDrv == NULL) {
|
if (pstrWFIDrv == NULL) {
|
||||||
PRINT_ER("driver is null\n");
|
PRINT_ER("driver is null\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user