]> git.baikalelectronics.ru Git - kernel.git/commitdiff
media: mdp3: Fix resource leaks in of_find_device_by_node
authorLu Hongfei <luhongfei@vivo.com>
Tue, 30 May 2023 10:17:18 +0000 (18:17 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 23 Sep 2023 09:11:05 +0000 (11:11 +0200)
[ Upstream commit 35ca8ce495366909b4c2e701d1356570dd40c4e2 ]

Use put_device to release the object get through of_find_device_by_node,
avoiding resource leaks.

Signed-off-by: Lu Hongfei <luhongfei@vivo.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/media/platform/mediatek/mdp3/mtk-mdp3-comp.c

index 7bc05f42a23c183255bfcdc3223456e9d0a7abdf..9a3f46c1f6ba3ad4954527a6f73b845e5b0c0d3c 100644 (file)
@@ -775,11 +775,13 @@ static int mdp_get_subsys_id(struct device *dev, struct device_node *node,
        ret = cmdq_dev_get_client_reg(&comp_pdev->dev, &cmdq_reg, index);
        if (ret != 0) {
                dev_err(&comp_pdev->dev, "cmdq_dev_get_subsys fail!\n");
+               put_device(&comp_pdev->dev);
                return -EINVAL;
        }
 
        comp->subsys_id = cmdq_reg.subsys;
        dev_dbg(&comp_pdev->dev, "subsys id=%d\n", cmdq_reg.subsys);
+       put_device(&comp_pdev->dev);
 
        return 0;
 }