mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 07:34:03 -04:00
staging: wilc1000: rename pstrHostIfGetMacAddress of fuction Handle_GetMacAddress
This patch renames pstrHostIfGetMacAddress of fuction Handle_GetMacAddress to get_mac_addr to avoid CamelCase naming convention. 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
090dbb1014
commit
7f0ee9a69e
@@ -496,14 +496,14 @@ static s32 Handle_SetMacAddress(struct host_if_drv *hif_drv,
|
||||
}
|
||||
|
||||
static s32 Handle_GetMacAddress(struct host_if_drv *hif_drv,
|
||||
struct get_mac_addr *pstrHostIfGetMacAddress)
|
||||
struct get_mac_addr *get_mac_addr)
|
||||
{
|
||||
s32 result = 0;
|
||||
struct wid wid;
|
||||
|
||||
wid.id = (u16)WID_MAC_ADDR;
|
||||
wid.type = WID_STR;
|
||||
wid.val = pstrHostIfGetMacAddress->mac_addr;
|
||||
wid.val = get_mac_addr->mac_addr;
|
||||
wid.size = ETH_ALEN;
|
||||
|
||||
result = send_config_pkt(GET_CFG, &wid, 1,
|
||||
|
||||
Reference in New Issue
Block a user