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

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

Merge "audio: fix compiler issue due to improper braces or indentation"

parents 4fa19da7 c4a98e01
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1780,11 +1780,12 @@ static int32_t q6asm_srvc_callback(struct apr_client_data *data, void *priv)

	if (dir != IN && dir != OUT) {
		pr_err("%s: Invalid audio port index: %d\n", __func__, dir);
		if ((session_id > 0 && session_id <= SESSION_MAX))
		if ((session_id > 0 && session_id <= SESSION_MAX)) {
			spin_unlock_irqrestore(
				&(session[session_id].session_lock), flags);
			return 0;
		}
	}
	port = &ac->port[dir];

	switch (data->opcode) {