This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: ov7670: Return the real error code
Author:  Fabio Estevam <fabio.este...@nxp.com>
Date:    Tue Jul 18 23:34:18 2017 -0400

When devm_clk_get() fails the real error code should be propagated,
instead of always returning -EPROBE_DEFER.

Signed-off-by: Fabio Estevam <fabio.este...@nxp.com>
Signed-off-by: Hans Verkuil <hans.verk...@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mche...@s-opensource.com>

 drivers/media/i2c/ov7670.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

---

diff --git a/drivers/media/i2c/ov7670.c b/drivers/media/i2c/ov7670.c
index 7270c68ed18a..552a881e24da 100644
--- a/drivers/media/i2c/ov7670.c
+++ b/drivers/media/i2c/ov7670.c
@@ -1614,7 +1614,7 @@ static int ov7670_probe(struct i2c_client *client,
 
        info->clk = devm_clk_get(&client->dev, "xclk");
        if (IS_ERR(info->clk))
-               return -EPROBE_DEFER;
+               return PTR_ERR(info->clk);
        clk_prepare_enable(info->clk);
 
        ret = ov7670_init_gpio(client, info);

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to