video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of
[ Upstream commita58c22cfbb] The device_node pointer is returned by of_parse_phandle() with refcount incremented. We should use of_node_put() on it when done. Fixes:f76ee892a9("omapfb: copy omapdss & displays for omapfb") Signed-off-by: Miaoqian Lin <linmq006@gmail.com> Signed-off-by: Helge Deller <deller@gmx.de> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
20da8404e4
commit
066d9b48f9
1 changed files with 1 additions and 0 deletions
|
|
@ -251,6 +251,7 @@ static int dvic_probe_of(struct platform_device *pdev)
|
|||
adapter_node = of_parse_phandle(node, "ddc-i2c-bus", 0);
|
||||
if (adapter_node) {
|
||||
adapter = of_get_i2c_adapter_by_node(adapter_node);
|
||||
of_node_put(adapter_node);
|
||||
if (adapter == NULL) {
|
||||
dev_err(&pdev->dev, "failed to parse ddc-i2c-bus\n");
|
||||
omap_dss_put_device(ddata->in);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue