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

Commit 635844ff authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "soc: qcom: mem-buf: Do not print errors on probe deferrals"

parents 17c22334 8185614f
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -1524,8 +1524,10 @@ static int mem_buf_probe(struct platform_device *pdev)
	mem_buf_hh_msgq_hdl = hh_msgq_register(HH_MSGQ_LABEL_MEMBUF);
	if (IS_ERR(mem_buf_hh_msgq_hdl)) {
		ret = PTR_ERR(mem_buf_hh_msgq_hdl);
		if (ret != EPROBE_DEFER)
			dev_err(&pdev->dev,
			"Message queue registration failed: rc: %d\n", ret);
				"Message queue registration failed: rc: %d\n",
				ret);
		goto err_msgq_register;
	}