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

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

Merge "misc: qseecom: Support qseecom deferred probing"

parents 7accc53e 3d4f53fc
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -8530,7 +8530,11 @@ static int qseecom_probe(struct platform_device *pdev)
	qseecom.ion_clnt = msm_ion_client_create("qseecom-kernel");
	if (IS_ERR_OR_NULL(qseecom.ion_clnt)) {
		pr_err("Ion client cannot be created\n");

		if (qseecom.ion_clnt != ERR_PTR(-EPROBE_DEFER))
			rc = -ENOMEM;
		else
			rc = -EPROBE_DEFER;
		goto exit_del_cdev;
	}