[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20201104124140.3443309-2-yukuai3@huawei.com>
Date: Wed, 4 Nov 2020 20:41:35 +0800
From: Yu Kuai <yukuai3@...wei.com>
To: <rick.chang@...iatek.com>, <bin.liu@...iatek.com>,
<mchehab@...nel.org>, <matthias.bgg@...il.com>,
<tiffany.lin@...iatek.com>, <andrew-ct.chen@...iatek.com>,
<xia.jiang@...iatek.com>, <hverkuil-cisco@...all.nl>,
<tfiga@...omium.org>, <minghsiu.tsai@...iatek.com>,
<jcliang@...omium.org>
CC: <linux-media@...r.kernel.org>,
<linux-arm-kernel@...ts.infradead.org>,
<linux-mediatek@...ts.infradead.org>,
<linux-kernel@...r.kernel.org>, <yukuai3@...wei.com>,
<yi.zhang@...wei.com>
Subject: [patch V3 1/6] media: platform: add missing put_device() call in mtk_jpeg_clk_init()
if of_find_device_by_node() succeed, mtk_jpeg_clk_init() doesn't have
a corresponding put_device(). Thus add put_device() to fix the exception
handling for this function implementation.
Fixes: 648372a87cee ("media: platform: Change the call functions of getting/enable/disable the jpeg's clock")
Signed-off-by: Yu Kuai <yukuai3@...wei.com>
---
drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c b/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c
index 227245ccaedc..106543391c46 100644
--- a/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c
+++ b/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c
@@ -1306,6 +1306,7 @@ static int mtk_jpeg_clk_init(struct mtk_jpeg_dev *jpeg)
jpeg->variant->clks);
if (ret) {
dev_err(&pdev->dev, "failed to get jpeg clock:%d\n", ret);
+ put_device(&pdev->dev);
return ret;
}
--
2.25.4
Powered by blists - more mailing lists