diff options
| -rw-r--r-- | CORE/HDD/src/wlan_hdd_main.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/CORE/HDD/src/wlan_hdd_main.c b/CORE/HDD/src/wlan_hdd_main.c index bc41d6889e09..673839bcc5ef 100644 --- a/CORE/HDD/src/wlan_hdd_main.c +++ b/CORE/HDD/src/wlan_hdd_main.c @@ -8497,6 +8497,24 @@ mem_free: } else if (strncmp(command, "STOP", 4) == 0) { hddLog(LOG1, FL("STOP command")); pHddCtx->driver_being_stopped = true; + } else if (strncmp(command, "BTCOEXSCAN", 10) == 0) { + hddLog(LOG1, FL("ignore BTCOEXSCAN and return -ENOTSUPP")); + ret = -ENOTSUPP; + } else if (strncmp(command, "RXFILTER", 8) == 0) { + hddLog(LOG1, FL("ignore RXFILTER and return -ENOTSUPP")); + ret = -ENOTSUPP; + } else if (strncmp(command, "RXFILTER-START", 14) == 0) { + hddLog(LOG1, FL("ignore RXFILTER-START and return 0")); + ret = 0; + } else if (strncmp(command, "RXFILTER-STOP", 13) == 0) { + hddLog(LOG1, FL("ignore RXFILTER-STOP and return 0")); + ret = 0; + } else if (strncmp(command, "BTCOEXSCAN-START", 16) == 0) { + hddLog(LOG1, FL("ignore BTCOEXSCAN-START and return 0")); + ret = 0; + } else if (strncmp(command, "BTCOEXSCAN-STOP", 15) == 0) { + hddLog(LOG1, FL("ignore BTCOEXSCAN-STOP and return 0")); + ret = 0; } else { MTRACE(vos_trace(VOS_MODULE_ID_HDD, TRACE_CODE_HDD_UNSUPPORTED_IOCTL, |
