]> asedeno.scripts.mit.edu Git - linux.git/commit
media: mtk-vpu: fix leaked of_node references
authorWen Yang <wen.yang99@zte.com.cn>
Mon, 6 May 2019 07:05:16 +0000 (03:05 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Wed, 29 May 2019 14:25:45 +0000 (10:25 -0400)
commitc8d0ccfd73dab35f60cb4f27d9fb7eb07c104e77
treec6e338d5f97d9b7c5b529f9d3cd520248bd875c4
parent10a34367ce097d5cd62ea526f5bcc809f99b5eb3
media: mtk-vpu: fix leaked of_node references

The call to of_parse_phandle returns a node pointer with refcount
incremented thus it must be explicitly decremented after the last
usage.

Detected by coccinelle with the following warnings:
drivers/media/platform/mtk-vpu/mtk_vpu.c:477:1-7: ERROR: missing of_node_put; acquired a node pointer with refcount incremented on line 464, but without a corresponding object release within this function.

Signed-off-by: Wen Yang <wen.yang99@zte.com.cn>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/platform/mtk-vpu/mtk_vpu.c