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 function GetIfHandler
This patch renames GetIfHandler function name to get_if_handler 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
3d6d8cd890
commit
7e725b474b
@@ -331,7 +331,7 @@ void linux_wlan_mac_indicate(struct wilc *wilc, int flag)
|
||||
}
|
||||
}
|
||||
|
||||
struct net_device *GetIfHandler(struct wilc *wilc, u8 *pMacHeader)
|
||||
struct net_device *get_if_handler(struct wilc *wilc, u8 *pMacHeader)
|
||||
{
|
||||
u8 *Bssid, *Bssid1;
|
||||
int i = 0;
|
||||
@@ -1422,7 +1422,7 @@ void frmw_to_linux(struct wilc *wilc, u8 *buff, u32 size, u32 pkt_offset)
|
||||
struct net_device *wilc_netdev;
|
||||
perInterface_wlan_t *nic;
|
||||
|
||||
wilc_netdev = GetIfHandler(wilc, buff);
|
||||
wilc_netdev = get_if_handler(wilc, buff);
|
||||
if (!wilc_netdev)
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user