Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec5c0f5d authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "dsp: Add afe_close in locked context"

parents 2c1a0f06 c89e6fb4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -7632,6 +7632,7 @@ int afe_close(int port_id)
		pr_debug("%s: Not a MAD port\n", __func__);
	}

	mutex_lock(&this_afe.afe_cmd_lock);
	port_index = afe_get_port_index(port_id);
	if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
		this_afe.afe_sample_rates[port_index] = 0;
@@ -7674,6 +7675,7 @@ int afe_close(int port_id)
		pr_err("%s: AFE close failed %d\n", __func__, ret);

fail_cmd:
	mutex_unlock(&this_afe.afe_cmd_lock);
	return ret;
}
EXPORT_SYMBOL(afe_close);