This is an automatic generated email to let you know that the following patch were queued:
Subject: media: ov2685: Assign ret in default case in s_ctrl callback Author: Sakari Ailus <[email protected]> Date: Fri Jan 19 05:49:02 2018 -0500 Assign ret in the default case for s_ctrl callback. This can't happen but still may result in compiler warnings. Signed-off-by: Sakari Ailus <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]> drivers/media/i2c/ov2685.c | 1 + 1 file changed, 1 insertion(+) --- diff --git a/drivers/media/i2c/ov2685.c b/drivers/media/i2c/ov2685.c index df4abecd8d74..904ac305d499 100644 --- a/drivers/media/i2c/ov2685.c +++ b/drivers/media/i2c/ov2685.c @@ -574,6 +574,7 @@ static int ov2685_set_ctrl(struct v4l2_ctrl *ctrl) default: dev_warn(&client->dev, "%s Unhandled id:0x%x, val:0x%x\n", __func__, ctrl->id, ctrl->val); + ret = -EINVAL; break; }; _______________________________________________ linuxtv-commits mailing list [email protected] https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
