[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20241015014053.669-1-thunder.leizhen@huawei.com>
Date: Tue, 15 Oct 2024 09:40:53 +0800
From: Zhen Lei <thunder.leizhen@...wei.com>
To: Joseph Liu <kwliu@...oton.com>, Marvin Lin <kflin@...oton.com>, Mauro
Carvalho Chehab <mchehab@...nel.org>, Hans Verkuil
<hverkuil-cisco@...all.nl>, <linux-media@...r.kernel.org>,
<openbmc@...ts.ozlabs.org>, <linux-kernel@...r.kernel.org>
CC: Zhen Lei <thunder.leizhen@...wei.com>
Subject: [PATCH 1/1] media: nuvoton: Fix an error check in npcm_video_ece_init()
When function of_find_device_by_node() fails, it returns NULL instead of
an error code. So the corresponding error check logic should be modified
to check whether the return value is NULL and set the error code to be
returned as -ENODEV.
Fixes: 46c15a4ff1f4 ("media: nuvoton: Add driver for NPCM video capture and encoding engine")
Signed-off-by: Zhen Lei <thunder.leizhen@...wei.com>
---
drivers/media/platform/nuvoton/npcm-video.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/media/platform/nuvoton/npcm-video.c b/drivers/media/platform/nuvoton/npcm-video.c
index 60fbb91400355c2..db454c9d2641f8f 100644
--- a/drivers/media/platform/nuvoton/npcm-video.c
+++ b/drivers/media/platform/nuvoton/npcm-video.c
@@ -1667,9 +1667,9 @@ static int npcm_video_ece_init(struct npcm_video *video)
dev_info(dev, "Support HEXTILE pixel format\n");
ece_pdev = of_find_device_by_node(ece_node);
- if (IS_ERR(ece_pdev)) {
+ if (!ece_pdev) {
dev_err(dev, "Failed to find ECE device\n");
- return PTR_ERR(ece_pdev);
+ return -ENODEV;
}
of_node_put(ece_node);
--
2.34.1
Powered by blists - more mailing lists