[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20260204024859.1178078-1-nichen@iscas.ac.cn>
Date: Wed, 4 Feb 2026 10:48:59 +0800
From: Chen Ni <nichen@...as.ac.cn>
To: dave.stevenson@...pberrypi.com,
sakari.ailus@...ux.intel.com,
mchehab@...nel.org,
andrey.konovalov@...aro.org,
jai.luthra@...asonboard.com
Cc: linux-media@...r.kernel.org,
linux-kernel@...r.kernel.org,
Chen Ni <nichen@...as.ac.cn>
Subject: [PATCH v2] media: i2c: imx219: Check return value of devm_gpiod_get_optional() in imx219_probe()
The devm_gpiod_get_optional() function may return an error pointer
(ERR_PTR) in case of a genuine failure during GPIO acquisition,
not just NULL which indicates the legitimate absence of an optional
GPIO.
Add an IS_ERR() check after the function call to catch such errors and
propagate them to the probe function, ensuring the driver fails to load
safely rather than proceeding with an invalid pointer.
Fixes: 1283b3b8f82b ("media: i2c: Add driver for Sony IMX219 sensor")
Signed-off-by: Chen Ni <nichen@...as.ac.cn>
Reviewed-by: Dave Stevenson <dave.stevenson@...pberrypi.com>
Reviewed-by: Jai Luthra <jai.luthra@...asonboard.com>
---
Changes in v2:
- Add Fixes tag.
---
drivers/media/i2c/imx219.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/media/i2c/imx219.c b/drivers/media/i2c/imx219.c
index fee63bc106d9..7da02ce5da15 100644
--- a/drivers/media/i2c/imx219.c
+++ b/drivers/media/i2c/imx219.c
@@ -1218,6 +1218,9 @@ static int imx219_probe(struct i2c_client *client)
/* Request optional enable pin */
imx219->reset_gpio = devm_gpiod_get_optional(dev, "reset",
GPIOD_OUT_HIGH);
+ if (IS_ERR(imx219->reset_gpio))
+ return dev_err_probe(dev, PTR_ERR(imx219->reset_gpio),
+ "failed to get reset gpio\n");
/*
* The sensor must be powered for imx219_identify_module()
--
2.25.1
Powered by blists - more mailing lists