staging: wilc1000: rename pBSSID of function linux_wlan_set_bssid
authorLeo Kim <leo.kim@atmel.com>
Thu, 5 Nov 2015 05:36:28 +0000 (14:36 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch renames pBSSID of function linux_wlan_set_bssid to bssid
to avoid CamelCase naming convention.
Also, prototype linux_wlan_set_bssid in wilc_wfi_cfgoperations.c is moved to
wilc_wfi_netdevice.h.

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>
drivers/staging/wilc1000/linux_wlan.c
drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
drivers/staging/wilc1000/wilc_wfi_netdevice.h

index 6758cbc04af92f7f72bc8fed7229552c6bf2ab79..2fac99d059023f5500ca8c207f4d873705560e8f 100644 (file)
@@ -358,7 +358,7 @@ struct net_device *get_if_handler(struct wilc *wilc, u8 *mac_header)
        return NULL;
 }
 
-int linux_wlan_set_bssid(struct net_device *wilc_netdev, u8 *pBSSID)
+int linux_wlan_set_bssid(struct net_device *wilc_netdev, u8 *bssid)
 {
        int i = 0;
        int ret = -1;
@@ -370,7 +370,7 @@ int linux_wlan_set_bssid(struct net_device *wilc_netdev, u8 *pBSSID)
 
        for (i = 0; i < wilc->vif_num; i++)
                if (wilc->vif[i].ndev == wilc_netdev) {
-                       memcpy(wilc->vif[i].bssid, pBSSID, 6);
+                       memcpy(wilc->vif[i].bssid, bssid, 6);
                        ret = 0;
                        break;
                }
index 32b93d3f806da61332d033c07125c5d60eee8eac..e8c82725d628be358f43762d7bb0df1d931cbb24 100644 (file)
@@ -505,8 +505,6 @@ int WILC_WFI_Set_PMKSA(u8 *bssid, struct wilc_priv *priv)
 
 
 }
-int linux_wlan_set_bssid(struct net_device *wilc_netdev, u8 *pBSSID);
-
 
 /**
  *  @brief      CfgConnectResult
index 07917ea105b60358e72a51fea717f7a5de54537d..9b11b713b8c86a2f8f9893eb1ff313e06c558dd5 100644 (file)
@@ -219,4 +219,5 @@ void wilc1000_wlan_deinit(struct net_device *dev);
 void WILC_WFI_mgmt_rx(struct wilc *wilc, u8 *buff, u32 size);
 u16 Set_machw_change_vir_if(struct net_device *dev, bool bValue);
 int linux_wlan_get_firmware(struct net_device *dev);
+int linux_wlan_set_bssid(struct net_device *wilc_netdev, u8 *bssid);
 #endif
This page took 0.028227 seconds and 5 git commands to generate.