Commit d3bec7fc authored by Sakari Ailus's avatar Sakari Ailus Committed by Mauro Carvalho Chehab

media: smiapp: Rename update_mode as pll_blanking_update

Rename the confusingly named smiapp_update_mode() function as
smiapp_pll_blanking_update(). The function is used to calculate new PLL
and blanking configuration after binning or scaling configuration has been
changed.
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 90c9e4a4
...@@ -867,7 +867,7 @@ static void smiapp_update_blanking(struct smiapp_sensor *sensor) ...@@ -867,7 +867,7 @@ static void smiapp_update_blanking(struct smiapp_sensor *sensor)
__smiapp_update_exposure_limits(sensor); __smiapp_update_exposure_limits(sensor);
} }
static int smiapp_update_mode(struct smiapp_sensor *sensor) static int smiapp_pll_blanking_update(struct smiapp_sensor *sensor)
{ {
struct i2c_client *client = v4l2_get_subdevdata(&sensor->src->sd); struct i2c_client *client = v4l2_get_subdevdata(&sensor->src->sd);
int rval; int rval;
...@@ -2047,7 +2047,7 @@ static int smiapp_set_compose(struct v4l2_subdev *subdev, ...@@ -2047,7 +2047,7 @@ static int smiapp_set_compose(struct v4l2_subdev *subdev,
smiapp_propagate(subdev, cfg, sel->which, V4L2_SEL_TGT_COMPOSE); smiapp_propagate(subdev, cfg, sel->which, V4L2_SEL_TGT_COMPOSE);
if (sel->which == V4L2_SUBDEV_FORMAT_ACTIVE) if (sel->which == V4L2_SUBDEV_FORMAT_ACTIVE)
return smiapp_update_mode(sensor); return smiapp_pll_blanking_update(sensor);
return 0; return 0;
} }
...@@ -3044,7 +3044,7 @@ static int smiapp_probe(struct i2c_client *client) ...@@ -3044,7 +3044,7 @@ static int smiapp_probe(struct i2c_client *client)
} }
mutex_lock(&sensor->mutex); mutex_lock(&sensor->mutex);
rval = smiapp_update_mode(sensor); rval = smiapp_pll_blanking_update(sensor);
mutex_unlock(&sensor->mutex); mutex_unlock(&sensor->mutex);
if (rval) { if (rval) {
dev_err(&client->dev, "update mode failed\n"); dev_err(&client->dev, "update mode failed\n");
......
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