|
@@ -5491,8 +5491,14 @@ static int hdd_we_motion_det_start_stop(struct hdd_adapter *adapter, int value)
|
|
|
motion_det.vdev_id = adapter->vdev_id;
|
|
|
motion_det.enable = value;
|
|
|
|
|
|
- if (!value)
|
|
|
+ if (value) {
|
|
|
+ /* For motion detection start, set motion_det_in_progress */
|
|
|
+ adapter->motion_det_in_progress = true;
|
|
|
+ } else {
|
|
|
+ /* For motion detection stop, reset motion_det_in_progress */
|
|
|
+ adapter->motion_det_in_progress = false;
|
|
|
adapter->motion_detection_mode = 0;
|
|
|
+ }
|
|
|
|
|
|
sme_motion_det_enable(hdd_ctx->mac_handle, &motion_det);
|
|
|
|
|
@@ -5517,6 +5523,12 @@ static int hdd_we_motion_det_base_line_start_stop(struct hdd_adapter *adapter,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
+ /* Do not send baselining start/stop during motion detection phase */
|
|
|
+ if (adapter->motion_det_in_progress) {
|
|
|
+ hdd_err("Motion detection still in progress, try later");
|
|
|
+ return -EAGAIN;
|
|
|
+ }
|
|
|
+
|
|
|
motion_det_base_line.vdev_id = adapter->vdev_id;
|
|
|
motion_det_base_line.enable = value;
|
|
|
sme_motion_det_base_line_enable(hdd_ctx->mac_handle,
|