Commit d239222e authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: rename Bssid of function get_if_handler



This patch renames Bssid of function get_if_handler to bssid
to avoid CamelCase naming convention.

Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 51456c2a
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -333,25 +333,25 @@ 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;
	bssid = mac_header + 10;
	Bssid1 = mac_header + 4;

	for (i = 0; i < wilc->vif_num; i++)
		if (!memcmp(Bssid1, wilc->vif[i].bssid, ETH_ALEN) ||
		    !memcmp(Bssid, wilc->vif[i].bssid, ETH_ALEN))
		    !memcmp(bssid, wilc->vif[i].bssid, ETH_ALEN))
			return wilc->vif[i].ndev;

	PRINT_INFO(INIT_DBG, "Invalide handle\n");
	for (i = 0; i < 25; i++)
		PRINT_D(INIT_DBG, "%02x ", mac_header[i]);
	Bssid = mac_header + 18;
	bssid = mac_header + 18;
	Bssid1 = mac_header + 12;
	for (i = 0; i < wilc->vif_num; i++)
		if (!memcmp(Bssid1, wilc->vif[i].bssid, ETH_ALEN) ||
		    !memcmp(Bssid, wilc->vif[i].bssid, ETH_ALEN))
		    !memcmp(bssid, wilc->vif[i].bssid, ETH_ALEN))
			return wilc->vif[i].ndev;

	PRINT_INFO(INIT_DBG, "\n");