ASoC: fix compilation warnings after enabling LLVM

After enabling compilation with LLVM for audio drivers,
some assignment warnings are reported. Add this change
to resolve the compilation warnings.

Change-Id: I571b2e210053bc0b80d65cd272ce1751e0ed10fb
Signed-off-by: Meng Wang <mwang@codeaurora.org>
This commit is contained in:
Meng Wang
2018-03-30 09:21:47 +08:00
parent 7b0ae02b27
commit 249b1f9bf1
2 changed files with 3 additions and 3 deletions

View File

@@ -654,7 +654,7 @@ static void cpe_notify_cmi_client(struct cpe_info *t_info, u8 *payload,
hdr = CMI_GET_HEADER(payload); hdr = CMI_GET_HEADER(payload);
service = CMI_HDR_GET_SERVICE(hdr); service = CMI_HDR_GET_SERVICE(hdr);
notif.event = CPE_SVC_CMI_MSG; notif.event = CMI_API_MSG;
notif.result = result; notif.result = result;
notif.message = payload; notif.message = payload;
@@ -1170,7 +1170,7 @@ static enum cpe_process_result cpe_boot_complete(
} }
pr_debug("%s: boot complete\n", __func__); pr_debug("%s: boot complete\n", __func__);
return CPE_SVC_SUCCESS; return CPE_PROC_SUCCESS;
} }
static enum cpe_process_result cpe_process_send_msg( static enum cpe_process_result cpe_process_send_msg(

View File

@@ -225,7 +225,7 @@ static void q6lsm_session_free(struct lsm_client *client)
pr_debug("%s: Freeing session ID %d\n", __func__, client->session); pr_debug("%s: Freeing session ID %d\n", __func__, client->session);
spin_lock_irqsave(&lsm_session_lock, flags); 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); spin_unlock_irqrestore(&lsm_session_lock, flags);
client->session = LSM_INVALID_SESSION_ID; client->session = LSM_INVALID_SESSION_ID;
} }