mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 02:59:19 -04:00
staging: wilc1000: rename Handle_get_IPAddress function
This patch renames Handle_get_IPAddress function to handle_get_ip_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:
committed by
Greg Kroah-Hartman
parent
a6e6d48b88
commit
d4516952e0
4
drivers/staging/wilc1000/host_interface.c
Normal file → Executable file
4
drivers/staging/wilc1000/host_interface.c
Normal file → Executable file
@@ -430,7 +430,7 @@ s32 handle_set_ip_address(struct host_if_drv *hif_drv, u8 *ip_addr, u8 idx)
|
||||
return result;
|
||||
}
|
||||
|
||||
s32 Handle_get_IPAddress(struct host_if_drv *hif_drv, u8 idx)
|
||||
s32 handle_get_ip_address(struct host_if_drv *hif_drv, u8 idx)
|
||||
{
|
||||
s32 result = 0;
|
||||
struct wid wid;
|
||||
@@ -2986,7 +2986,7 @@ static int hostIFthread(void *pvArg)
|
||||
|
||||
case HOST_IF_MSG_GET_IPADDRESS:
|
||||
PRINT_D(HOSTINF_DBG, "HOST_IF_MSG_SET_IPADDRESS\n");
|
||||
Handle_get_IPAddress(msg.drv, msg.body.ip_info.idx);
|
||||
handle_get_ip_address(msg.drv, msg.body.ip_info.idx);
|
||||
break;
|
||||
|
||||
case HOST_IF_MSG_SET_MAC_ADDRESS:
|
||||
|
||||
Reference in New Issue
Block a user