aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath6kl/init.c
diff options
context:
space:
mode:
authorJouni Malinen <jouni@qca.qualcomm.com>2011-08-30 14:58:01 -0400
committerKalle Valo <kvalo@qca.qualcomm.com>2011-08-31 03:13:01 -0400
commitae32c30a6ec991088e5346036015be1a9f9cf14b (patch)
treebea48ec3c2185b99732b7316e094f75805dc95ad /drivers/net/wireless/ath/ath6kl/init.c
parent1276c9ef6db2bc856579bc7f02e4cc710b089f0d (diff)
ath6kl: Report received Probe Request frames to cfg80211
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/init.c')
-rw-r--r--drivers/net/wireless/ath/ath6kl/init.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/init.c b/drivers/net/wireless/ath/ath6kl/init.c
index 48c82e9561bf..3b99ae2dfb18 100644
--- a/drivers/net/wireless/ath/ath6kl/init.c
+++ b/drivers/net/wireless/ath/ath6kl/init.c
@@ -471,6 +471,13 @@ static int ath6kl_target_config_wlan_params(struct ath6kl *ar)
471 ret); 471 ret);
472 } 472 }
473 473
474 /* Enable Probe Request reporting for P2P */
475 ret = ath6kl_wmi_probe_report_req_cmd(ar->wmi, true);
476 if (ret) {
477 ath6kl_dbg(ATH6KL_DBG_TRC, "failed to enable Probe Request "
478 "reporting (%d)\n", ret);
479 }
480
474 return status; 481 return status;
475} 482}
476 483