Merge "cnss2: Ignore calibration trigger if already in progress"

This commit is contained in:
qctecmdr 2021-04-12 16:12:01 -07:00 committed by Gerrit - the friendly Code Review server
commit 1760a9a1f6

View File

@ -1549,6 +1549,9 @@ static int cnss_cold_boot_cal_start_hdlr(struct cnss_plat_data *plat_priv)
if (test_bit(CNSS_COLD_BOOT_CAL_DONE, &plat_priv->driver_state)) {
cnss_pr_dbg("Calibration complete. Ignore calibration req\n");
goto out;
} else if (test_bit(CNSS_IN_COLD_BOOT_CAL, &plat_priv->driver_state)) {
cnss_pr_dbg("Calibration in progress. Ignore new calibration req\n");
goto out;
}
if (test_bit(CNSS_DRIVER_LOADING, &plat_priv->driver_state) ||