[PATCH v2] backlight: l4f00242t03: Add check for spi_setup

Chen Ni posted 1 patch 1 year, 7 months ago
drivers/video/backlight/l4f00242t03.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
[PATCH v2] backlight: l4f00242t03: Add check for spi_setup
Posted by Chen Ni 1 year, 7 months ago
Add check for the return value of spi_setup() and return the error
if it fails in order to catch the error.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
---
Changelog:

v1 -> v2:

1. Use dev_err_probe() to match other error paths
---
 drivers/video/backlight/l4f00242t03.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/video/backlight/l4f00242t03.c b/drivers/video/backlight/l4f00242t03.c
index dd0874f8c7ff..4175a4603071 100644
--- a/drivers/video/backlight/l4f00242t03.c
+++ b/drivers/video/backlight/l4f00242t03.c
@@ -166,6 +166,7 @@ static const struct lcd_ops l4f_ops = {
 static int l4f00242t03_probe(struct spi_device *spi)
 {
 	struct l4f00242t03_priv *priv;
+	int ret;
 
 	priv = devm_kzalloc(&spi->dev, sizeof(struct l4f00242t03_priv),
 				GFP_KERNEL);
@@ -174,7 +175,9 @@ static int l4f00242t03_probe(struct spi_device *spi)
 
 	spi_set_drvdata(spi, priv);
 	spi->bits_per_word = 9;
-	spi_setup(spi);
+	ret = spi_setup(spi);
+	if (ret < 0)
+		return dev_err_probe(&spi->dev, ret, "Unable to setup spi.\n");
 
 	priv->spi = spi;
 
-- 
2.25.1
Re: (subset) [PATCH v2] backlight: l4f00242t03: Add check for spi_setup
Posted by Lee Jones 1 year, 6 months ago
On Fri, 05 Jul 2024 17:28:00 +0800, Chen Ni wrote:
> Add check for the return value of spi_setup() and return the error
> if it fails in order to catch the error.
> 
> 

Applied, thanks!

[1/1] backlight: l4f00242t03: Add check for spi_setup
      commit: cec01c3b62f11efabc8c92f91472575651c593a9

--
Lee Jones [李琼斯]

Re: [PATCH v2] backlight: l4f00242t03: Add check for spi_setup
Posted by Daniel Thompson 1 year, 7 months ago
On Fri, Jul 05, 2024 at 05:28:00PM +0800, Chen Ni wrote:
> Add check for the return value of spi_setup() and return the error
> if it fails in order to catch the error.
>
> Signed-off-by: Chen Ni <nichen@iscas.ac.cn>

Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>


Daniel.