Commit ba7eac31 authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman

staging: wilc1000: rename Handle_Scan

This patch renames Handle_Scan to handle_scan to avoid camelcase.
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 03f00ac7
...@@ -731,7 +731,7 @@ static s32 handle_cfg_param(struct wilc_vif *vif, ...@@ -731,7 +731,7 @@ static s32 handle_cfg_param(struct wilc_vif *vif,
return result; return result;
} }
static s32 Handle_Scan(struct wilc_vif *vif, static s32 handle_scan(struct wilc_vif *vif,
struct scan_attr *pstrHostIFscanAttr) struct scan_attr *pstrHostIFscanAttr)
{ {
s32 result = 0; s32 result = 0;
...@@ -2515,7 +2515,7 @@ static int hostIFthread(void *pvArg) ...@@ -2515,7 +2515,7 @@ static int hostIFthread(void *pvArg)
switch (msg.id) { switch (msg.id) {
case HOST_IF_MSG_SCAN: case HOST_IF_MSG_SCAN:
Handle_Scan(msg.vif, &msg.body.scan_info); handle_scan(msg.vif, &msg.body.scan_info);
break; break;
case HOST_IF_MSG_CONNECT: case HOST_IF_MSG_CONNECT:
......
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