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

staging: wilc1000: rename Handle_SetMacAddress function

This patch renames Handle_SetMacAddress function to handle_set_mac_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 d4516952
...@@ -464,7 +464,7 @@ s32 handle_get_ip_address(struct host_if_drv *hif_drv, u8 idx) ...@@ -464,7 +464,7 @@ s32 handle_get_ip_address(struct host_if_drv *hif_drv, u8 idx)
return result; return result;
} }
static s32 Handle_SetMacAddress(struct host_if_drv *hif_drv, static s32 handle_set_mac_address(struct host_if_drv *hif_drv,
struct set_mac_addr *set_mac_addr) struct set_mac_addr *set_mac_addr)
{ {
s32 result = 0; s32 result = 0;
...@@ -2990,7 +2990,8 @@ static int hostIFthread(void *pvArg) ...@@ -2990,7 +2990,8 @@ static int hostIFthread(void *pvArg)
break; break;
case HOST_IF_MSG_SET_MAC_ADDRESS: case HOST_IF_MSG_SET_MAC_ADDRESS:
Handle_SetMacAddress(msg.drv, &msg.body.set_mac_info); handle_set_mac_address(msg.drv,
&msg.body.set_mac_info);
break; break;
case HOST_IF_MSG_GET_MAC_ADDRESS: case HOST_IF_MSG_GET_MAC_ADDRESS:
......
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