Thread (3 messages) 3 messages, 2 authors, 2014-03-25
STALE4499d

[PATCH 1/2] clk: s2mps11: Fix possible NULL pointer dereference

From: Krzysztof Kozlowski <hidden>
Date: 2014-03-21 12:18:32
Also in: linux-samsung-soc, lkml, stable
Subsystem: common clk framework, samsung multifunction pmic device drivers, the rest · Maintainers: Michael Turquette, Stephen Boyd, André Draszik, Linus Torvalds

If parent device does not have of_node set the s2mps11_clk_parse_dt()
returned NULL. This NULL was later passed to of_clk_add_provider() which
dereferenced it in pr_debug() call.

Signed-off-by: Krzysztof Kozlowski <redacted>
Cc: <redacted>
---
 drivers/clk/clk-s2mps11.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/clk/clk-s2mps11.c b/drivers/clk/clk-s2mps11.c
index 00a3abe103a5..27c83e45eaed 100644
--- a/drivers/clk/clk-s2mps11.c
+++ b/drivers/clk/clk-s2mps11.c
@@ -130,7 +130,7 @@ static struct device_node *s2mps11_clk_parse_dt(struct platform_device *pdev)
 	int i;
 
 	if (!iodev->dev->of_node)
-		return NULL;
+		return ERR_PTR(-EINVAL);
 
 	clk_np = of_find_node_by_name(iodev->dev->of_node, "clocks");
 	if (!clk_np) {
-- 
1.7.9.5
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help