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

staging: wilc1000: rename Handle_set_IPAddress function

This patch renames Handle_set_IPAddress function to handle_set_ip_address
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 97b5c591
...@@ -396,7 +396,7 @@ static s32 handle_set_operation_mode(struct host_if_drv *hif_drv, ...@@ -396,7 +396,7 @@ static s32 handle_set_operation_mode(struct host_if_drv *hif_drv,
return result; return result;
} }
s32 Handle_set_IPAddress(struct host_if_drv *hif_drv, u8 *ip_addr, u8 idx) s32 handle_set_ip_address(struct host_if_drv *hif_drv, u8 *ip_addr, u8 idx)
{ {
s32 result = 0; s32 result = 0;
struct wid wid; struct wid wid;
...@@ -2979,7 +2979,9 @@ static int hostIFthread(void *pvArg) ...@@ -2979,7 +2979,9 @@ static int hostIFthread(void *pvArg)
case HOST_IF_MSG_SET_IPADDRESS: case HOST_IF_MSG_SET_IPADDRESS:
PRINT_D(HOSTINF_DBG, "HOST_IF_MSG_SET_IPADDRESS\n"); PRINT_D(HOSTINF_DBG, "HOST_IF_MSG_SET_IPADDRESS\n");
Handle_set_IPAddress(msg.drv, msg.body.ip_info.ip_addr, msg.body.ip_info.idx); handle_set_ip_address(msg.drv,
msg.body.ip_info.ip_addr,
msg.body.ip_info.idx);
break; break;
case HOST_IF_MSG_GET_IPADDRESS: case HOST_IF_MSG_GET_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