Commit dc276664 authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: rename Handle_CfgParam function

This patch renames Handle_CfgParam function to handle_cfg_param
to avoid camelcase.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b3bf8fd9
...@@ -517,8 +517,8 @@ static s32 handle_get_mac_address(struct host_if_drv *hif_drv, ...@@ -517,8 +517,8 @@ static s32 handle_get_mac_address(struct host_if_drv *hif_drv,
return result; return result;
} }
static s32 Handle_CfgParam(struct host_if_drv *hif_drv, static s32 handle_cfg_param(struct host_if_drv *hif_drv,
struct cfg_param_attr *cfg_param_attr) struct cfg_param_attr *cfg_param_attr)
{ {
s32 result = 0; s32 result = 0;
struct wid strWIDList[32]; struct wid strWIDList[32];
...@@ -2888,8 +2888,7 @@ static int hostIFthread(void *pvArg) ...@@ -2888,8 +2888,7 @@ static int hostIFthread(void *pvArg)
break; break;
case HOST_IF_MSG_CFG_PARAMS: case HOST_IF_MSG_CFG_PARAMS:
handle_cfg_param(msg.drv, &msg.body.cfg_info);
Handle_CfgParam(msg.drv, &msg.body.cfg_info);
break; break;
case HOST_IF_MSG_SET_CHANNEL: case HOST_IF_MSG_SET_CHANNEL:
......
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