qcacld-3.0: Rate limit error log in nan and ndp request handler

Rate limit error log in nan and ndp request handler to avoid
excessive console logging.

Change-Id: I9e9bb7185a77533b03e8a17d64c17371770b9b52
CRs-Fixed: 2326275
This commit is contained in:
Rajeev Kumar
2018-10-02 11:47:38 -07:00
committed by nshrivas
parent b5ead51ea2
commit 3872a5bcc5
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ static int __wlan_hdd_cfg80211_nan_request(struct wiphy *wiphy,
return ret_val;
if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
hdd_err("Command not allowed in FTM mode");
hdd_err_rl("Command not allowed in FTM mode");
return -EPERM;
}

View File

@@ -335,7 +335,7 @@ static int __wlan_hdd_cfg80211_process_ndp_cmd(struct wiphy *wiphy,
return ret_val;
if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
hdd_err("Command not allowed in FTM mode");
hdd_err_rl("Command not allowed in FTM mode");
return -EPERM;
}