Commit 26092e7e authored by Shobhit Kukreti's avatar Shobhit Kukreti Committed by Mauro Carvalho Chehab

media: i2c: Fix Unnecessary Semicolon Warning Reported by coccicheck

	Removed the warning from the following files:

	drivers/media/i2c/ov13858.c
	drivers/media/i2c/ov2685.c
	drivers/media/i2c/ov5695.c
Signed-off-by: default avatarShobhit Kukreti <shobhitkukreti@gmail.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 4196ad7c
...@@ -1224,7 +1224,7 @@ static int ov13858_set_ctrl(struct v4l2_ctrl *ctrl) ...@@ -1224,7 +1224,7 @@ static int ov13858_set_ctrl(struct v4l2_ctrl *ctrl)
ov13858->exposure->minimum, ov13858->exposure->minimum,
max, ov13858->exposure->step, max); max, ov13858->exposure->step, max);
break; break;
}; }
/* /*
* Applying V4L2 control value only happens * Applying V4L2 control value only happens
...@@ -1262,7 +1262,7 @@ static int ov13858_set_ctrl(struct v4l2_ctrl *ctrl) ...@@ -1262,7 +1262,7 @@ static int ov13858_set_ctrl(struct v4l2_ctrl *ctrl)
"ctrl(id:0x%x,val:0x%x) is not handled\n", "ctrl(id:0x%x,val:0x%x) is not handled\n",
ctrl->id, ctrl->val); ctrl->id, ctrl->val);
break; break;
}; }
pm_runtime_put(&client->dev); pm_runtime_put(&client->dev);
......
...@@ -576,7 +576,7 @@ static int ov2685_set_ctrl(struct v4l2_ctrl *ctrl) ...@@ -576,7 +576,7 @@ static int ov2685_set_ctrl(struct v4l2_ctrl *ctrl)
__func__, ctrl->id, ctrl->val); __func__, ctrl->id, ctrl->val);
ret = -EINVAL; ret = -EINVAL;
break; break;
}; }
pm_runtime_put(&client->dev); pm_runtime_put(&client->dev);
......
...@@ -1143,7 +1143,7 @@ static int ov5695_set_ctrl(struct v4l2_ctrl *ctrl) ...@@ -1143,7 +1143,7 @@ static int ov5695_set_ctrl(struct v4l2_ctrl *ctrl)
dev_warn(&client->dev, "%s Unhandled id:0x%x, val:0x%x\n", dev_warn(&client->dev, "%s Unhandled id:0x%x, val:0x%x\n",
__func__, ctrl->id, ctrl->val); __func__, ctrl->id, ctrl->val);
break; break;
}; }
pm_runtime_put(&client->dev); pm_runtime_put(&client->dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment