media: zoran: Change zoran_v4l_set_format parameter from zoran_fh to zoran
authorCorentin Labbe <clabbe@baylibre.com>
Fri, 25 Sep 2020 18:30:31 +0000 (20:30 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 1 Oct 2020 07:40:25 +0000 (09:40 +0200)
We need to get rid of zoran_fh, so let's change function arguments.

Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/zoran/zoran_driver.c

index 518ba19e1e0ad299917412c9d4c054fa75d05246..db85978a2893457fd4bef3874cbce77bfde4fda4 100644 (file)
@@ -401,11 +401,9 @@ static void jpg_fbuffer_free(struct zoran_fh *fh)
 /*
  *   V4L Buffer grabbing
  */
-
-static int zoran_v4l_set_format(struct zoran_fh *fh, int width, int height,
+static int zoran_v4l_set_format(struct zoran *zr, int width, int height,
                                const struct zoran_format *format)
 {
-       struct zoran *zr = fh->zr;
        int bpp;
 
        /* Check size and format of the grab wanted */
@@ -1671,7 +1669,7 @@ static int zoran_s_fmt_vid_cap(struct file *file, void *__fh,
 
        map_mode_raw(fh);
 
-       res = zoran_v4l_set_format(fh, fmt->fmt.pix.width, fmt->fmt.pix.height,
+       res = zoran_v4l_set_format(zr, fmt->fmt.pix.width, fmt->fmt.pix.height,
                                   &zoran_formats[i]);
        if (res)
                return res;