OSDN Git Service

media: camss: vfe: Don't read hardware version needlessly
authorRobert Foss <robert.foss@linaro.org>
Mon, 26 Jul 2021 08:01:10 +0000 (10:01 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 30 Sep 2021 08:07:37 +0000 (10:07 +0200)
vfe_set_power() is invoked a few times, which causes a lot of
VFE HW version prints.

Secondly there is no real reason for calling hw_version_read() from
this location specifically, since it does nothing more than print
the VFE HW version.

A better location for the hw_version_read() call would be somewhere
which is only executed once per VFE unit.

Signed-off-by: Robert Foss <robert.foss@linaro.org>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/qcom/camss/camss-vfe.c

index e0f3a36..f6e889c 100644 (file)
@@ -713,8 +713,6 @@ static int vfe_set_power(struct v4l2_subdev *sd, int on)
                ret = vfe_get(vfe);
                if (ret < 0)
                        return ret;
-
-               vfe->ops->hw_version_read(vfe, vfe->camss->dev);
        } else {
                vfe_put(vfe);
        }
@@ -1301,6 +1299,7 @@ int msm_vfe_subdev_init(struct camss *camss, struct vfe_device *vfe,
                return -EINVAL;
        }
        vfe->ops->subdev_init(dev, vfe);
+       vfe->ops->hw_version_read(vfe, dev);
 
        /* Memory */