media: uvcvideo: Rename uvc_streaming 'format' field to 'formats'
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Thu, 20 Apr 2023 03:33:03 +0000 (06:33 +0300)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Fri, 9 Jun 2023 13:11:47 +0000 (14:11 +0100)
The uvc_streaming 'format' field points to an array of formats. Rename
it to 'formats' to make this clearer.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Ricardo Ribalda <ribalda@chromium.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/usb/uvc/uvc_driver.c
drivers/media/usb/uvc/uvc_v4l2.c
drivers/media/usb/uvc/uvc_video.c
drivers/media/usb/uvc/uvcvideo.h

index a0e592d46fa252b94fcdc55eb906d8698383f0a8..8a1698e129772935a4c0dc9e8da69f0df90f6257 100644 (file)
@@ -184,7 +184,7 @@ static void uvc_stream_delete(struct uvc_streaming *stream)
 
        usb_put_intf(stream->intf);
 
-       kfree(stream->format);
+       kfree(stream->formats);
        kfree(stream->header.bmaControls);
        kfree(stream);
 }
@@ -677,7 +677,7 @@ static int uvc_parse_streaming(struct uvc_device *dev,
        frame = (struct uvc_frame *)&format[nformats];
        interval = (u32 *)&frame[nframes];
 
-       streaming->format = format;
+       streaming->formats = format;
        streaming->nformats = 0;
 
        /* Parse the format descriptors. */
index 35453f81c1d97a59a9c869af8bfbe590302711b3..6960d7ebd904601874d9df5eb62ba93dc381baad 100644 (file)
@@ -235,7 +235,7 @@ static int uvc_v4l2_try_format(struct uvc_streaming *stream,
         * format otherwise.
         */
        for (i = 0; i < stream->nformats; ++i) {
-               format = &stream->format[i];
+               format = &stream->formats[i];
                if (format->fcc == fmt->fmt.pix.pixelformat)
                        break;
        }
@@ -319,8 +319,8 @@ static int uvc_v4l2_try_format(struct uvc_streaming *stream,
         * accepted the requested format as-is.
         */
        for (i = 0; i < stream->nformats; ++i) {
-               if (probe->bFormatIndex == stream->format[i].index) {
-                       format = &stream->format[i];
+               if (probe->bFormatIndex == stream->formats[i].index) {
+                       format = &stream->formats[i];
                        break;
                }
        }
@@ -708,7 +708,7 @@ static int uvc_ioctl_enum_fmt(struct uvc_streaming *stream,
        fmt->index = index;
        fmt->type = type;
 
-       format = &stream->format[fmt->index];
+       format = &stream->formats[fmt->index];
        fmt->flags = 0;
        if (format->flags & UVC_FMT_FLAG_COMPRESSED)
                fmt->flags |= V4L2_FMT_FLAG_COMPRESSED;
@@ -1256,8 +1256,8 @@ static int uvc_ioctl_enum_framesizes(struct file *file, void *fh,
 
        /* Look for the given pixel format */
        for (i = 0; i < stream->nformats; i++) {
-               if (stream->format[i].fcc == fsize->pixel_format) {
-                       format = &stream->format[i];
+               if (stream->formats[i].fcc == fsize->pixel_format) {
+                       format = &stream->formats[i];
                        break;
                }
        }
@@ -1297,8 +1297,8 @@ static int uvc_ioctl_enum_frameintervals(struct file *file, void *fh,
 
        /* Look for the given pixel format and frame size */
        for (i = 0; i < stream->nformats; i++) {
-               if (stream->format[i].fcc == fival->pixel_format) {
-                       format = &stream->format[i];
+               if (stream->formats[i].fcc == fival->pixel_format) {
+                       format = &stream->formats[i];
                        break;
                }
        }
index d4b023d4de7c3b37bc0287dce16301e49f4e5bf4..af540f435099ff397eca8d38200fd38a8dc08a25 100644 (file)
@@ -166,8 +166,8 @@ static void uvc_fixup_video_ctrl(struct uvc_streaming *stream,
        }
 
        for (i = 0; i < stream->nformats; ++i) {
-               if (stream->format[i].index == ctrl->bFormatIndex) {
-                       format = &stream->format[i];
+               if (stream->formats[i].index == ctrl->bFormatIndex) {
+                       format = &stream->formats[i];
                        break;
                }
        }
@@ -2161,7 +2161,7 @@ int uvc_video_init(struct uvc_streaming *stream)
         * available format otherwise.
         */
        for (i = stream->nformats; i > 0; --i) {
-               format = &stream->format[i-1];
+               format = &stream->formats[i-1];
                if (format->index == probe->bFormatIndex)
                        break;
        }
index 9a596c8d894a823b8b851c5d7618be7d770c3a2e..05fec637417dface320c2c94df0a025c7a6b90f7 100644 (file)
@@ -438,7 +438,7 @@ struct uvc_streaming {
        enum v4l2_buf_type type;
 
        unsigned int nformats;
-       struct uvc_format *format;
+       struct uvc_format *formats;
 
        struct uvc_streaming_control ctrl;
        struct uvc_format *def_format;