mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 19:59:34 -04:00
staging: wilc1000: rename Bssid1 of function get_if_handler
This patch renames Bssid1 of function get_if_handler to bssid1 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
d239222e82
commit
660786eae1
@@ -333,14 +333,14 @@ void linux_wlan_mac_indicate(struct wilc *wilc, int flag)
|
||||
|
||||
struct net_device *get_if_handler(struct wilc *wilc, u8 *mac_header)
|
||||
{
|
||||
u8 *bssid, *Bssid1;
|
||||
u8 *bssid, *bssid1;
|
||||
int i = 0;
|
||||
|
||||
bssid = mac_header + 10;
|
||||
Bssid1 = mac_header + 4;
|
||||
bssid1 = mac_header + 4;
|
||||
|
||||
for (i = 0; i < wilc->vif_num; i++)
|
||||
if (!memcmp(Bssid1, wilc->vif[i].bssid, ETH_ALEN) ||
|
||||
if (!memcmp(bssid1, wilc->vif[i].bssid, ETH_ALEN) ||
|
||||
!memcmp(bssid, wilc->vif[i].bssid, ETH_ALEN))
|
||||
return wilc->vif[i].ndev;
|
||||
|
||||
@@ -348,9 +348,9 @@ struct net_device *get_if_handler(struct wilc *wilc, u8 *mac_header)
|
||||
for (i = 0; i < 25; i++)
|
||||
PRINT_D(INIT_DBG, "%02x ", mac_header[i]);
|
||||
bssid = mac_header + 18;
|
||||
Bssid1 = mac_header + 12;
|
||||
bssid1 = mac_header + 12;
|
||||
for (i = 0; i < wilc->vif_num; i++)
|
||||
if (!memcmp(Bssid1, wilc->vif[i].bssid, ETH_ALEN) ||
|
||||
if (!memcmp(bssid1, wilc->vif[i].bssid, ETH_ALEN) ||
|
||||
!memcmp(bssid, wilc->vif[i].bssid, ETH_ALEN))
|
||||
return wilc->vif[i].ndev;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user