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

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

Merge "ASoC: fix compilation warnings after enabling LLVM"

parents 525b9e1d 249b1f9b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -654,7 +654,7 @@ static void cpe_notify_cmi_client(struct cpe_info *t_info, u8 *payload,
	hdr = CMI_GET_HEADER(payload);
	service = CMI_HDR_GET_SERVICE(hdr);

	notif.event = CPE_SVC_CMI_MSG;
	notif.event = CMI_API_MSG;
	notif.result = result;
	notif.message = payload;

@@ -1170,7 +1170,7 @@ static enum cpe_process_result cpe_boot_complete(
	}

	pr_debug("%s: boot complete\n", __func__);
	return CPE_SVC_SUCCESS;
	return CPE_PROC_SUCCESS;
}

static enum cpe_process_result cpe_process_send_msg(
+1 −1
Original line number Diff line number Diff line
@@ -225,7 +225,7 @@ static void q6lsm_session_free(struct lsm_client *client)

	pr_debug("%s: Freeing session ID %d\n", __func__, client->session);
	spin_lock_irqsave(&lsm_session_lock, flags);
	lsm_session[client->session] = LSM_INVALID_SESSION_ID;
	lsm_session[client->session] = NULL;
	spin_unlock_irqrestore(&lsm_session_lock, flags);
	client->session = LSM_INVALID_SESSION_ID;
}