summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2013-08-16 09:00:59 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2013-08-16 09:00:59 -0700
commit8e0732914a27fae08f78f139c5306d0fcd83b96c (patch)
tree96c75ad1f61d0e6fd99f8a431a731df0a79d49b6
parentcb393e2ae477530014facb6c0bd04d0a6ef6855d (diff)
parenta4e6b29fa6479507cb73556f213663c8d184b2ac (diff)
downloadandroid_hardware_qcom_wlan-8e0732914a27fae08f78f139c5306d0fcd83b96c.tar.gz
android_hardware_qcom_wlan-8e0732914a27fae08f78f139c5306d0fcd83b96c.tar.bz2
android_hardware_qcom_wlan-8e0732914a27fae08f78f139c5306d0fcd83b96c.zip
Merge "wlan: Updating dwelltime in run time."
-rw-r--r--qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211.c b/qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211.c
index 9d46e69..bdd3915 100644
--- a/qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211.c
+++ b/qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211.c
@@ -89,6 +89,12 @@ int wpa_driver_nl80211_driver_cmd(void *priv, char *cmd, char *buf,
wpa_printf(MSG_DEBUG, "%s: P2P: %s ", __func__, buf);
else if (os_strcasecmp(cmd, "P2P_SET_NOA") == 0)
wpa_printf(MSG_DEBUG, "%s: P2P: %s ", __func__, buf);
+ else if (os_strncasecmp(cmd, "GETDWELLTIME", 12) == 0){
+ wpa_printf(MSG_DEBUG, "%s: cmd:%s buf:%s", __func__, cmd, buf);
+ ret = strlen(buf);
+ }
+ else if (os_strncasecmp(cmd, "SETDWELLTIME", 12) == 0)
+ wpa_printf(MSG_DEBUG, "%s: cmd:%s buf:%s", __func__, cmd, buf);
else
wpa_printf(MSG_DEBUG, "%s %s len = %d, %d", __func__, buf, ret, buf_len);
}