mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
staging: wilc1000: rename Handle_GetMacAddress function
This patch renames Handle_GetMacAddress function to handle_get_mac_address to avoid camelcase. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Glen Lee <glen.lee@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a826742165
commit
b3bf8fd984
7
drivers/staging/wilc1000/host_interface.c
Normal file → Executable file
7
drivers/staging/wilc1000/host_interface.c
Normal file → Executable file
@ -494,8 +494,8 @@ static s32 handle_set_mac_address(struct host_if_drv *hif_drv,
|
||||
return result;
|
||||
}
|
||||
|
||||
static s32 Handle_GetMacAddress(struct host_if_drv *hif_drv,
|
||||
struct get_mac_addr *get_mac_addr)
|
||||
static s32 handle_get_mac_address(struct host_if_drv *hif_drv,
|
||||
struct get_mac_addr *get_mac_addr)
|
||||
{
|
||||
s32 result = 0;
|
||||
struct wid wid;
|
||||
@ -2995,7 +2995,8 @@ static int hostIFthread(void *pvArg)
|
||||
break;
|
||||
|
||||
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;
|
||||
|
||||
case HOST_IF_MSG_REMAIN_ON_CHAN:
|
||||
|
Loading…
Reference in New Issue
Block a user