OSDN Git Service

wil6210: rename 'secure_pcp' to 'privacy'
authorVladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
Sun, 15 Feb 2015 12:02:36 +0000 (14:02 +0200)
committerKalle Valo <kvalo@codeaurora.org>
Fri, 27 Feb 2015 08:15:22 +0000 (10:15 +0200)
Make this field to track privacy attribute for all interface types

Signed-off-by: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/ath/wil6210/cfg80211.c
drivers/net/wireless/ath/wil6210/debugfs.c
drivers/net/wireless/ath/wil6210/wil6210.h
drivers/net/wireless/ath/wil6210/wmi.c

index 2d5ea21..38bd294 100644 (file)
@@ -769,7 +769,7 @@ static int wil_cfg80211_start_ap(struct wiphy *wiphy,
        wmi_set_ie(wil, WMI_FRAME_ASSOC_RESP, bcon->assocresp_ies_len,
                   bcon->assocresp_ies);
 
-       wil->secure_pcp = info->privacy;
+       wil->privacy = info->privacy;
 
        netif_carrier_on(ndev);
 
index fd59751..fbe27a3 100644 (file)
@@ -1400,7 +1400,7 @@ static void wil6210_debugfs_init_isr(struct wil6210_priv *wil,
 
 /* fields in struct wil6210_priv */
 static const struct dbg_off dbg_wil_off[] = {
-       WIL_FIELD(secure_pcp,   S_IRUGO | S_IWUSR,      doff_u32),
+       WIL_FIELD(privacy,      S_IRUGO,                doff_u32),
        WIL_FIELD(status[0],    S_IRUGO | S_IWUSR,      doff_ulong),
        WIL_FIELD(fw_version,   S_IRUGO,                doff_u32),
        WIL_FIELD(hw_version,   S_IRUGO,                doff_x32),
index 4afb8e4..b6e65c3 100644 (file)
@@ -540,7 +540,7 @@ struct wil6210_priv {
        wait_queue_head_t wq; /* for all wait_event() use */
        /* profile */
        u32 monitor_flags;
-       u32 secure_pcp; /* create secure PCP? */
+       u32 privacy; /* secure connection? */
        int sinfo_gen;
        /* interrupt moderation */
        u32 tx_max_burst_duration;
index e60186c..0213135 100644 (file)
@@ -874,7 +874,7 @@ int wmi_pcp_start(struct wil6210_priv *wil, int bi, u8 wmi_nettype, u8 chan)
                struct wmi_pcp_started_event evt;
        } __packed reply;
 
-       if (!wil->secure_pcp)
+       if (!wil->privacy)
                cmd.disable_sec = 1;
 
        if ((cmd.pcp_max_assoc_sta > WIL6210_MAX_CID) ||