media: smiapp: Rename update_mode as pll_blanking_update
authorSakari Ailus <sakari.ailus@linux.intel.com>
Wed, 2 Oct 2019 10:51:22 +0000 (07:51 -0300)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Thu, 24 Oct 2019 21:56:37 +0000 (18:56 -0300)
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: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/i2c/smiapp/smiapp-core.c

index 6d4b749b48b4e6f5aeb23de350800f15f2ead344..77dfce7c3be9bacfef515dd1f3bb587e4eef5e26 100644 (file)
@@ -867,7 +867,7 @@ static void smiapp_update_blanking(struct smiapp_sensor *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);
        int rval;
@@ -2047,7 +2047,7 @@ static int smiapp_set_compose(struct v4l2_subdev *subdev,
        smiapp_propagate(subdev, cfg, sel->which, V4L2_SEL_TGT_COMPOSE);
 
        if (sel->which == V4L2_SUBDEV_FORMAT_ACTIVE)
-               return smiapp_update_mode(sensor);
+               return smiapp_pll_blanking_update(sensor);
 
        return 0;
 }
@@ -3044,7 +3044,7 @@ static int smiapp_probe(struct i2c_client *client)
        }
 
        mutex_lock(&sensor->mutex);
-       rval = smiapp_update_mode(sensor);
+       rval = smiapp_pll_blanking_update(sensor);
        mutex_unlock(&sensor->mutex);
        if (rval) {
                dev_err(&client->dev, "update mode failed\n");