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

Commit 0a6b602d authored by Siddartha Mohanadoss's avatar Siddartha Mohanadoss Committed by Gerrit - the friendly Code Review server
Browse files

mhi_dev: mhi: Fix compilation



Add parameter for ipa_alloc() to fix compilation error.

Change-Id: Ia321e730df67f3926504b230d743b6d4ca3b9387
Signed-off-by: default avatarSiddartha Mohanadoss <smohanad@codeaurora.org>
parent 1aa24ca3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1825,7 +1825,7 @@ static int mhi_init(struct mhi_dev *mhi)
		return -ENOMEM;
	}

	mhi_ipc_log = ipc_log_context_create(MHI_IPC_LOG_PAGES, "mhi");
	mhi_ipc_log = ipc_log_context_create(MHI_IPC_LOG_PAGES, "mhi", 0);

	if (mhi_ipc_log == NULL) {
		dev_err(&pdev->dev,
+1 −1
Original line number Diff line number Diff line
@@ -735,7 +735,7 @@ int mhi_uci_init(void)
	struct uci_client *mhi_client = NULL;
	s32 r = 0;
	mhi_uci_ipc_log = ipc_log_context_create(MHI_UCI_IPC_LOG_PAGES,
						"mhi-uci");
						"mhi-uci", 0);
	if (mhi_uci_ipc_log == NULL) {
		uci_log(UCI_DBG_WARNING,
				"Failed to create IPC logging context\n");