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

staging: wilc1000: rename Handle_GetMacAddress function

This patch renames Handle_GetMacAddress function to handle_get_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 a8267421
...@@ -494,8 +494,8 @@ static s32 handle_set_mac_address(struct host_if_drv *hif_drv, ...@@ -494,8 +494,8 @@ static s32 handle_set_mac_address(struct host_if_drv *hif_drv,
return result; return result;
} }
static s32 Handle_GetMacAddress(struct host_if_drv *hif_drv, static s32 handle_get_mac_address(struct host_if_drv *hif_drv,
struct get_mac_addr *get_mac_addr) struct get_mac_addr *get_mac_addr)
{ {
s32 result = 0; s32 result = 0;
struct wid wid; struct wid wid;
...@@ -2995,7 +2995,8 @@ static int hostIFthread(void *pvArg) ...@@ -2995,7 +2995,8 @@ static int hostIFthread(void *pvArg)
break; break;
case HOST_IF_MSG_GET_MAC_ADDRESS: case HOST_IF_MSG_GET_MAC_ADDRESS:
Handle_GetMacAddress(msg.drv, &msg.body.get_mac_info); handle_get_mac_address(msg.drv,
&msg.body.get_mac_info);
break; break;
case HOST_IF_MSG_REMAIN_ON_CHAN: case HOST_IF_MSG_REMAIN_ON_CHAN:
......
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