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

Commit d1ef9c35 authored by Artem Borisov's avatar Artem Borisov Committed by Bharath
Browse files

techpack: codecs: wcd_cpe: Fix enum conversion warnings

Change-Id: I0fe6b10f55b5243d55e4c18c8f44d5bb123bd865
parent c91cedc4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -28,8 +28,8 @@ enum cmi_api_event {
};

struct cmi_api_notification {
	enum cmi_api_event event;
	enum cmi_api_result result;
	int event;
	int result;
	void *message;
};

+1 −2
Original line number Diff line number Diff line
@@ -1134,8 +1134,7 @@ static void cpe_clk_plan_work(struct work_struct *work)
	cmi_deregister(cpe_d.cpe_cmi_handle);
}

static enum cpe_process_result cpe_boot_complete(
		struct cpe_info *t_info)
static int cpe_boot_complete(struct cpe_info *t_info)
{
	struct cmi_core_svc_cmdrsp_shared_mem_alloc *p = NULL;