Some little style fixup work.

Signed-off-by: Sakari Ailus <sakari.ai...@linux.intel.com>
---
 drivers/media/i2c/ov9640.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/drivers/media/i2c/ov9640.c b/drivers/media/i2c/ov9640.c
index c183273fd332..295dcc5992c9 100644
--- a/drivers/media/i2c/ov9640.c
+++ b/drivers/media/i2c/ov9640.c
@@ -271,19 +271,20 @@ static int ov9640_s_stream(struct v4l2_subdev *sd, int 
enable)
 /* Set status of additional camera capabilities */
 static int ov9640_s_ctrl(struct v4l2_ctrl *ctrl)
 {
-       struct ov9640_priv *priv = container_of(ctrl->handler, struct 
ov9640_priv, hdl);
+       struct ov9640_priv *priv = container_of(ctrl->handler,
+                                               struct ov9640_priv, hdl);
        struct i2c_client *client = v4l2_get_subdevdata(&priv->subdev);
 
        switch (ctrl->id) {
        case V4L2_CID_VFLIP:
                if (ctrl->val)
                        return ov9640_reg_rmw(client, OV9640_MVFP,
-                                                       OV9640_MVFP_V, 0);
+                                             OV9640_MVFP_V, 0);
                return ov9640_reg_rmw(client, OV9640_MVFP, 0, OV9640_MVFP_V);
        case V4L2_CID_HFLIP:
                if (ctrl->val)
                        return ov9640_reg_rmw(client, OV9640_MVFP,
-                                                       OV9640_MVFP_H, 0);
+                                             OV9640_MVFP_H, 0);
                return ov9640_reg_rmw(client, OV9640_MVFP, 0, OV9640_MVFP_H);
        }
 
@@ -471,7 +472,7 @@ static int ov9640_write_regs(struct i2c_client *client, u32 
width,
        /* write color matrix configuration into the module */
        for (i = 0; i < matrix_regs_len; i++) {
                ret = ov9640_reg_write(client, matrix_regs[i].reg,
-                                               matrix_regs[i].val);
+                                      matrix_regs[i].val);
                if (ret)
                        return ret;
        }
@@ -487,7 +488,7 @@ static int ov9640_prog_dflt(struct i2c_client *client)
 
        for (i = 0; i < ARRAY_SIZE(ov9640_regs_dflt); i++) {
                ret = ov9640_reg_write(client, ov9640_regs_dflt[i].reg,
-                                               ov9640_regs_dflt[i].val);
+                                      ov9640_regs_dflt[i].val);
                if (ret)
                        return ret;
        }
-- 
2.11.0

Reply via email to