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:
parent
090dbb1014
commit
7f0ee9a69e
1 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue