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

Commit d41783cb authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ASoC: msm: qdsp6v2: Fix FE id check in routing driver"

parents 2de1ab3d 666b2fb4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9456,7 +9456,7 @@ static struct platform_driver msm_routing_pcm_driver = {
int msm_routing_check_backend_enabled(int fedai_id)
{
	int i;
	if (fedai_id >= MSM_FRONTEND_DAI_MM_MAX_ID) {
	if (fedai_id > MSM_FRONTEND_DAI_MM_MAX_ID) {
		/* bad ID assigned in machine driver */
		pr_err("%s: bad MM ID\n", __func__);
		return 0;