summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Cho <tony.cho@atmel.com>2015-09-30 12:44:33 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-10-02 12:55:59 +0300
commit889c25bee9f59dca815f48fbd5ce02e9e29cb9f5 (patch)
tree649a1f4ef7c5631c3c8da024d05bbdc77914c464
parentca8f47f8d50b5b34cba5a8dbe871c01a6a3719b6 (diff)
downloadlinux-889c25bee9f59dca815f48fbd5ce02e9e29cb9f5.tar.xz
staging: wilc1000: rename strDelStaParam
This patch renames strDelStaParam to del_sta_info to avoid CamelCase naming convention. Signed-off-by: Tony Cho <tony.cho@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/wilc1000/host_interface.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index d9d0b2d6d17e..94559bd6258d 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -393,7 +393,7 @@ union message_body {
struct channel_attr channel_info;
struct beacon_attr beacon_info;
struct add_sta_param add_sta_info;
- struct del_sta strDelStaParam;
+ struct del_sta del_sta_info;
struct add_sta_param strEditStaParam;
struct timer_cb strTimerCb;
struct power_mgmt_param strPowerMgmtparam;
@@ -4146,7 +4146,7 @@ static int hostIFthread(void *pvArg)
break;
case HOST_IF_MSG_DEL_STATION:
- Handle_DelStation(msg.drvHandler, &msg.body.strDelStaParam);
+ Handle_DelStation(msg.drvHandler, &msg.body.del_sta_info);
break;
case HOST_IF_MSG_EDIT_STATION:
@@ -6700,7 +6700,7 @@ s32 host_int_del_station(tstrWILC_WFIDrv *hWFIDrv, const u8 *pu8MacAddr)
s32 s32Error = 0;
tstrWILC_WFIDrv *pstrWFIDrv = (tstrWILC_WFIDrv *)hWFIDrv;
struct host_if_msg msg;
- struct del_sta *pstrDelStationMsg = &msg.body.strDelStaParam;
+ struct del_sta *pstrDelStationMsg = &msg.body.del_sta_info;
if (pstrWFIDrv == NULL) {
PRINT_ER("driver is null\n");