Message ID | 1502322097-29746-1-git-send-email-pradeepc@codeaurora.org (mailing list archive) |
---|---|
State | Rejected |
Delegated to: | Johannes Berg |
Headers | show |
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index bafab07530d6..beda9c62f74a 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -9784,7 +9784,8 @@ static int nl80211_set_cqm_rssi(struct genl_info *info, } if (wdev->iftype != NL80211_IFTYPE_STATION && - wdev->iftype != NL80211_IFTYPE_P2P_CLIENT) + wdev->iftype != NL80211_IFTYPE_P2P_CLIENT && + wdev->iftype != NL80211_IFTYPE_AP) return -EOPNOTSUPP; wdev_lock(wdev);
Enable connection monitoring for AP mode which makes it possible to track signal strength of connected stations. Signed-off-by: Pradeep Kumar Chitrapu <pradeepc@codeaurora.org> --- net/wireless/nl80211.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)