Thread (34 messages) 34 messages, 5 authors, 2020-02-13

Re: [resend PATCH v6 05/12] media: mtk-mdp: Check return value of of_clk_get

From: Enric Balletbo i Serra <hidden>
Date: 2019-12-09 09:50:10
Also in: dri-devel, linux-arm-kernel, linux-clk, linux-media, linux-mediatek, lkml

Hi Matthias,

On 7/12/19 23:47, matthias.bgg@kernel.org wrote:
quoted hunk ↗ jump to hunk
From: Matthias Brugger <mbrugger@suse.com>

Check the return value of of_clk_get and print an error
message if not EPROBE_DEFER.

Signed-off-by: Matthias Brugger <mbrugger@suse.com>
---
 drivers/media/platform/mtk-mdp/mtk_mdp_comp.c | 6 ++++++
 1 file changed, 6 insertions(+)
diff --git a/drivers/media/platform/mtk-mdp/mtk_mdp_comp.c b/drivers/media/platform/mtk-mdp/mtk_mdp_comp.c
index 9afe8161a8c0..4e2fc1337b80 100644
--- a/drivers/media/platform/mtk-mdp/mtk_mdp_comp.c
+++ b/drivers/media/platform/mtk-mdp/mtk_mdp_comp.c
@@ -110,6 +110,12 @@ int mtk_mdp_comp_init(struct device *dev, struct device_node *node,
 
 	for (i = 0; i < ARRAY_SIZE(comp->clk); i++) {
 		comp->clk[i] = of_clk_get(node, i);
+		if (IS_ERR(comp->clk[i])i) {
Oops                                    ^
+			if (PTR_ERR(comp->clk[i] != -EPROBE_DEFER)
and missing closing )
+					dev_err(dev, "Failed to get clock\n");
Like the previous patch I think that the clk core will print a message if the
clock is not found and you can just this redundand dev_err.
+
+			return PTR_ERR(comp->clk[i]);
+		}
 
 		/* Only RDMA needs two clocks */
 		if (comp->type != MTK_MDP_RDMA)
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help