summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dsp/q6afe.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/dsp/q6afe.c b/dsp/q6afe.c
index 5880ec93..c1e89ff8 100644
--- a/dsp/q6afe.c
+++ b/dsp/q6afe.c
@@ -10187,8 +10187,7 @@ static int afe_get_cal_spv4_ex_vi_ftm_param(int32_t cal_type, size_t data_size,
pr_debug("%s: cal_type = %d\n", __func__, cal_type);
if (this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL] == NULL ||
cal_data == NULL ||
- data_size > sizeof(*cal_data) ||
- data_size < sizeof(cal_data->cal_hdr))
+ data_size != sizeof(*cal_data))
goto done;
mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL]->lock);
@@ -10255,8 +10254,7 @@ static int afe_get_cal_sp_ex_vi_ftm_param(int32_t cal_type, size_t data_size,
pr_debug("%s: cal_type = %d\n", __func__, cal_type);
if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
cal_data == NULL ||
- data_size > sizeof(*cal_data) ||
- data_size < sizeof(cal_data->cal_hdr))
+ data_size != sizeof(*cal_data))
goto done;
mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);