]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[media] mt9m001: avoid calling mt9m001_find_datafmt() twice
authorHans Verkuil <hans.verkuil@cisco.com>
Mon, 4 May 2015 10:25:49 +0000 (07:25 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Sat, 15 Apr 2017 01:29:13 +0000 (22:29 -0300)
Simplify mt9m001_s_fmt and mt9m001_set_fmt.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/i2c/soc_camera/mt9m001.c

index 6d1782b265295560350761cb50f06de3ea022b5d..1bfb0d53059ee803c4499d6bfea58cf652550586 100644 (file)
@@ -278,6 +278,7 @@ static int mt9m001_get_fmt(struct v4l2_subdev *sd,
 }
 
 static int mt9m001_s_fmt(struct v4l2_subdev *sd,
+                        const struct mt9m001_datafmt *fmt,
                         struct v4l2_mbus_framefmt *mf)
 {
        struct i2c_client *client = v4l2_get_subdevdata(sd);
@@ -297,9 +298,8 @@ static int mt9m001_s_fmt(struct v4l2_subdev *sd,
        if (!ret) {
                mf->width       = mt9m001->rect.width;
                mf->height      = mt9m001->rect.height;
-               mt9m001->fmt    = mt9m001_find_datafmt(mf->code,
-                                       mt9m001->fmts, mt9m001->num_fmts);
-               mf->colorspace  = mt9m001->fmt->colorspace;
+               mt9m001->fmt    = fmt;
+               mf->colorspace  = fmt->colorspace;
        }
 
        return ret;
@@ -335,7 +335,7 @@ static int mt9m001_set_fmt(struct v4l2_subdev *sd,
        mf->colorspace  = fmt->colorspace;
 
        if (format->which == V4L2_SUBDEV_FORMAT_ACTIVE)
-               return mt9m001_s_fmt(sd, mf);
+               return mt9m001_s_fmt(sd, fmt, mf);
        cfg->try_fmt = *mf;
        return 0;
 }