summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSrinivas Girigowda <sgirigow@codeaurora.org>2018-04-17 14:42:23 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2018-04-19 03:51:04 -0700
commit99db55b6ea581cc057350b58ccc8751f25529cd0 (patch)
tree1a8b1a51cff8be065694c54ad41e6a4444b35cff
parent025c204db4267a1c38c08ab3fe02554dfb30d424 (diff)
qcacld-3.0: Add dummy function for supplicant deprecated commands
Fix the VTS test failures when running the following deprecated commands in SupplicantStaIfaceHidlTest RXFILTER-START RXFILTER-STOP BTCOEXSCAN-START BTCOEXSCAN-STOP Change-Id: I45fa09c24700e6872de7709c6875dbdbd8aa10cc CRs-Fixed: 2226343
-rw-r--r--core/hdd/src/wlan_hdd_ioctl.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/core/hdd/src/wlan_hdd_ioctl.c b/core/hdd/src/wlan_hdd_ioctl.c
index 3cbd92566d33..e0f17d3ac797 100644
--- a/core/hdd/src/wlan_hdd_ioctl.c
+++ b/core/hdd/src/wlan_hdd_ioctl.c
@@ -7177,8 +7177,6 @@ static const struct hdd_drv_cmd hdd_drv_cmds[] = {
{"COUNTRY", drv_cmd_country, true},
{"SETSUSPENDMODE", drv_cmd_dummy, false},
{"SET_AP_WPS_P2P_IE", drv_cmd_dummy, false},
- {"BTCOEXSCAN", drv_cmd_dummy, false},
- {"RXFILTER", drv_cmd_dummy, false},
{"SETROAMTRIGGER", drv_cmd_set_roam_trigger, true},
{"GETROAMTRIGGER", drv_cmd_get_roam_trigger, false},
{"SETROAMSCANPERIOD", drv_cmd_set_roam_scan_period, true},
@@ -7276,7 +7274,12 @@ static const struct hdd_drv_cmd hdd_drv_cmds[] = {
{"GETANTENNAMODE", drv_cmd_get_antenna_mode, false},
{"SET_DISABLE_CHANNEL_LIST", drv_cmd_set_disable_chan_list, true},
{"GET_DISABLE_CHANNEL_LIST", drv_cmd_get_disable_chan_list, false},
+ /* Deprecated commands */
{"STOP", drv_cmd_dummy, false},
+ {"RXFILTER-START", drv_cmd_dummy, false},
+ {"RXFILTER-STOP", drv_cmd_dummy, false},
+ {"BTCOEXSCAN-START", drv_cmd_dummy, false},
+ {"BTCOEXSCAN-STOP", drv_cmd_dummy, false},
};
/**