Commit e0853a43 authored by Jacopo Mondi's avatar Jacopo Mondi Committed by Mauro Carvalho Chehab

media: ov772x: Empty line before end-of-function return

Add an empty line before return at the end of functions.
Signed-off-by: default avatarJacopo Mondi <jacopo+renesas@jmondi.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 2a2f21e3
...@@ -1129,6 +1129,7 @@ static int ov772x_set_fmt(struct v4l2_subdev *sd, ...@@ -1129,6 +1129,7 @@ static int ov772x_set_fmt(struct v4l2_subdev *sd,
priv->win = win; priv->win = win;
priv->cfmt = cfmt; priv->cfmt = cfmt;
return 0; return 0;
} }
...@@ -1172,6 +1173,7 @@ static int ov772x_video_probe(struct ov772x_priv *priv) ...@@ -1172,6 +1173,7 @@ static int ov772x_video_probe(struct ov772x_priv *priv)
done: done:
ov772x_s_power(&priv->subdev, 0); ov772x_s_power(&priv->subdev, 0);
return ret; return ret;
} }
...@@ -1213,6 +1215,7 @@ static int ov772x_enum_mbus_code(struct v4l2_subdev *sd, ...@@ -1213,6 +1215,7 @@ static int ov772x_enum_mbus_code(struct v4l2_subdev *sd,
return -EINVAL; return -EINVAL;
code->code = ov772x_cfmts[code->index].code; code->code = ov772x_cfmts[code->index].code;
return 0; return 0;
} }
...@@ -1327,6 +1330,7 @@ static int ov772x_remove(struct i2c_client *client) ...@@ -1327,6 +1330,7 @@ static int ov772x_remove(struct i2c_client *client)
gpiod_put(priv->pwdn_gpio); gpiod_put(priv->pwdn_gpio);
v4l2_device_unregister_subdev(&priv->subdev); v4l2_device_unregister_subdev(&priv->subdev);
v4l2_ctrl_handler_free(&priv->hdl); v4l2_ctrl_handler_free(&priv->hdl);
return 0; return 0;
} }
......
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