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

staging: wilc1000: rename Handle_SetOperationMode function

This patch renames Handle_SetOperationMode function to handle_set_operation_mode
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 23f2badd
...@@ -371,8 +371,8 @@ static s32 handle_set_wfi_drv_handler(struct host_if_drv *hif_drv, ...@@ -371,8 +371,8 @@ static s32 handle_set_wfi_drv_handler(struct host_if_drv *hif_drv,
return result; return result;
} }
static s32 Handle_SetOperationMode(struct host_if_drv *hif_drv, static s32 handle_set_operation_mode(struct host_if_drv *hif_drv,
struct op_mode *hif_op_mode) struct op_mode *hif_op_mode)
{ {
s32 result = 0; s32 result = 0;
struct wid wid; struct wid wid;
...@@ -2974,7 +2974,7 @@ static int hostIFthread(void *pvArg) ...@@ -2974,7 +2974,7 @@ static int hostIFthread(void *pvArg)
break; break;
case HOST_IF_MSG_SET_OPERATION_MODE: case HOST_IF_MSG_SET_OPERATION_MODE:
Handle_SetOperationMode(msg.drv, &msg.body.mode); handle_set_operation_mode(msg.drv, &msg.body.mode);
break; break;
case HOST_IF_MSG_SET_IPADDRESS: case HOST_IF_MSG_SET_IPADDRESS:
......
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