]> git.baikalelectronics.ru Git - kernel.git/commit
drm: atmel-hlcdc: Fix OF graph parsing
authorBoris Brezillon <boris.brezillon@free-electrons.com>
Fri, 3 Jun 2016 07:17:36 +0000 (09:17 +0200)
committerBoris Brezillon <boris.brezillon@free-electrons.com>
Tue, 21 Jun 2016 12:15:45 +0000 (14:15 +0200)
commitcdab8ec699f5d6f03e0b5a66178c4cfdab3b55ff
treee2281734d4c5424e4b2cf695519684febc0591cb
parent8bac91ca5bc4aea63889efd6fa9df9f03bcd2320
drm: atmel-hlcdc: Fix OF graph parsing

atmel_hlcdc_create_outputs() iterates over OF graph nodes and releases
the node (using of_node_put()) after each iteration, which is wrong
since for_each_endpoint_of_node() is already taking care of that.

Move the of_node_put() call in the error path.

Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Reviewed-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Fixes: 1ea83d72d497 ("drm: atmel-hlcdc: rework the output code to support drm bridges")
drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c