wil6210: rename 'secure_pcp' to 'privacy'
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>
This commit is contained in:
parent
8f55cbec7f
commit
774974e504
|
@ -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);
|
||||
|
||||
|
|
|
@ -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),
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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) ||
|
||||
|
|
Loading…
Reference in New Issue