Commit 10660003 authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman

staging: wilc1000: rename Handle_Key() and Handle_ConnectTimeout()

Fix "Avoid camelCase" issue found by checkpatch.pl script.
Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Reviewed-by: default avatarClaudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e5b85ff3
...@@ -1165,7 +1165,7 @@ static s32 Handle_Connect(struct wilc_vif *vif, ...@@ -1165,7 +1165,7 @@ static s32 Handle_Connect(struct wilc_vif *vif,
return result; return result;
} }
static s32 Handle_ConnectTimeout(struct wilc_vif *vif) static s32 handle_connect_timeout(struct wilc_vif *vif)
{ {
s32 result = 0; s32 result = 0;
struct connect_info strConnectInfo; struct connect_info strConnectInfo;
...@@ -1525,7 +1525,7 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct wilc_vif *vif, ...@@ -1525,7 +1525,7 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct wilc_vif *vif,
return result; return result;
} }
static int Handle_Key(struct wilc_vif *vif, static int handle_key(struct wilc_vif *vif,
struct key_attr *pstrHostIFkeyAttr) struct key_attr *pstrHostIFkeyAttr)
{ {
s32 result = 0; s32 result = 0;
...@@ -2511,7 +2511,7 @@ static void host_if_work(struct work_struct *work) ...@@ -2511,7 +2511,7 @@ static void host_if_work(struct work_struct *work)
break; break;
case HOST_IF_MSG_KEY: case HOST_IF_MSG_KEY:
Handle_Key(msg->vif, &msg->body.key_info); handle_key(msg->vif, &msg->body.key_info);
break; break;
case HOST_IF_MSG_CFG_PARAMS: case HOST_IF_MSG_CFG_PARAMS:
...@@ -2578,7 +2578,7 @@ static void host_if_work(struct work_struct *work) ...@@ -2578,7 +2578,7 @@ static void host_if_work(struct work_struct *work)
break; break;
case HOST_IF_MSG_CONNECT_TIMER_FIRED: case HOST_IF_MSG_CONNECT_TIMER_FIRED:
Handle_ConnectTimeout(msg->vif); handle_connect_timeout(msg->vif);
break; break;
case HOST_IF_MSG_POWER_MGMT: case HOST_IF_MSG_POWER_MGMT:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment