mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 22:44:27 +08:00
media: ov772x: fix whitespace issues
As we're adding this as a new driver, make checkpatch happier by solving some whitespace issues, using --fix-inplace. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
186c446f4b
commit
054d8830ac
@ -375,7 +375,7 @@
|
|||||||
*/
|
*/
|
||||||
#define OV7720 0x7720
|
#define OV7720 0x7720
|
||||||
#define OV7725 0x7721
|
#define OV7725 0x7721
|
||||||
#define VERSION(pid, ver) ((pid<<8)|(ver&0xFF))
|
#define VERSION(pid, ver) ((pid << 8) | (ver & 0xFF))
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PLL multipliers
|
* PLL multipliers
|
||||||
@ -500,7 +500,6 @@ static const struct ov772x_color_format ov772x_cfmts[] = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* window size list
|
* window size list
|
||||||
*/
|
*/
|
||||||
@ -557,6 +556,7 @@ static int ov772x_mask_set(struct i2c_client *client, u8 command, u8 mask,
|
|||||||
u8 set)
|
u8 set)
|
||||||
{
|
{
|
||||||
s32 val = ov772x_read(client, command);
|
s32 val = ov772x_read(client, command);
|
||||||
|
|
||||||
if (val < 0)
|
if (val < 0)
|
||||||
return val;
|
return val;
|
||||||
|
|
||||||
@ -919,7 +919,6 @@ static int ov772x_set_params(struct ov772x_priv *priv,
|
|||||||
* Edge Ctrl
|
* Edge Ctrl
|
||||||
*/
|
*/
|
||||||
if (priv->info->edgectrl.strength & OV772X_MANUAL_EDGE_CTRL) {
|
if (priv->info->edgectrl.strength & OV772X_MANUAL_EDGE_CTRL) {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Manual Edge Control Mode
|
* Manual Edge Control Mode
|
||||||
*
|
*
|
||||||
@ -1064,7 +1063,7 @@ ov772x_set_fmt_error:
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int ov772x_get_selection(struct v4l2_subdev *sd,
|
static int ov772x_get_selection(struct v4l2_subdev *sd,
|
||||||
struct v4l2_subdev_pad_config *cfg,
|
struct v4l2_subdev_pad_config *cfg,
|
||||||
struct v4l2_subdev_selection *sel)
|
struct v4l2_subdev_selection *sel)
|
||||||
{
|
{
|
||||||
struct ov772x_priv *priv = to_ov772x(sd);
|
struct ov772x_priv *priv = to_ov772x(sd);
|
||||||
@ -1087,7 +1086,7 @@ static int ov772x_get_selection(struct v4l2_subdev *sd,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int ov772x_get_fmt(struct v4l2_subdev *sd,
|
static int ov772x_get_fmt(struct v4l2_subdev *sd,
|
||||||
struct v4l2_subdev_pad_config *cfg,
|
struct v4l2_subdev_pad_config *cfg,
|
||||||
struct v4l2_subdev_format *format)
|
struct v4l2_subdev_format *format)
|
||||||
{
|
{
|
||||||
struct v4l2_mbus_framefmt *mf = &format->format;
|
struct v4l2_mbus_framefmt *mf = &format->format;
|
||||||
@ -1106,7 +1105,7 @@ static int ov772x_get_fmt(struct v4l2_subdev *sd,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int ov772x_set_fmt(struct v4l2_subdev *sd,
|
static int ov772x_set_fmt(struct v4l2_subdev *sd,
|
||||||
struct v4l2_subdev_pad_config *cfg,
|
struct v4l2_subdev_pad_config *cfg,
|
||||||
struct v4l2_subdev_format *format)
|
struct v4l2_subdev_format *format)
|
||||||
{
|
{
|
||||||
struct ov772x_priv *priv = to_ov772x(sd);
|
struct ov772x_priv *priv = to_ov772x(sd);
|
||||||
@ -1219,7 +1218,7 @@ static int ov772x_enum_frame_interval(struct v4l2_subdev *sd,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int ov772x_enum_mbus_code(struct v4l2_subdev *sd,
|
static int ov772x_enum_mbus_code(struct v4l2_subdev *sd,
|
||||||
struct v4l2_subdev_pad_config *cfg,
|
struct v4l2_subdev_pad_config *cfg,
|
||||||
struct v4l2_subdev_mbus_code_enum *code)
|
struct v4l2_subdev_mbus_code_enum *code)
|
||||||
{
|
{
|
||||||
if (code->pad || code->index >= ARRAY_SIZE(ov772x_cfmts))
|
if (code->pad || code->index >= ARRAY_SIZE(ov772x_cfmts))
|
||||||
@ -1282,11 +1281,11 @@ static int ov772x_probe(struct i2c_client *client,
|
|||||||
v4l2_i2c_subdev_init(&priv->subdev, client, &ov772x_subdev_ops);
|
v4l2_i2c_subdev_init(&priv->subdev, client, &ov772x_subdev_ops);
|
||||||
v4l2_ctrl_handler_init(&priv->hdl, 3);
|
v4l2_ctrl_handler_init(&priv->hdl, 3);
|
||||||
v4l2_ctrl_new_std(&priv->hdl, &ov772x_ctrl_ops,
|
v4l2_ctrl_new_std(&priv->hdl, &ov772x_ctrl_ops,
|
||||||
V4L2_CID_VFLIP, 0, 1, 1, 0);
|
V4L2_CID_VFLIP, 0, 1, 1, 0);
|
||||||
v4l2_ctrl_new_std(&priv->hdl, &ov772x_ctrl_ops,
|
v4l2_ctrl_new_std(&priv->hdl, &ov772x_ctrl_ops,
|
||||||
V4L2_CID_HFLIP, 0, 1, 1, 0);
|
V4L2_CID_HFLIP, 0, 1, 1, 0);
|
||||||
v4l2_ctrl_new_std(&priv->hdl, &ov772x_ctrl_ops,
|
v4l2_ctrl_new_std(&priv->hdl, &ov772x_ctrl_ops,
|
||||||
V4L2_CID_BAND_STOP_FILTER, 0, 256, 1, 0);
|
V4L2_CID_BAND_STOP_FILTER, 0, 256, 1, 0);
|
||||||
priv->subdev.ctrl_handler = &priv->hdl;
|
priv->subdev.ctrl_handler = &priv->hdl;
|
||||||
if (priv->hdl.error)
|
if (priv->hdl.error)
|
||||||
return priv->hdl.error;
|
return priv->hdl.error;
|
||||||
|
Loading…
Reference in New Issue
Block a user