]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
[media] usb: Make use of media_bus_format enum
authorBoris BREZILLON <boris.brezillon@free-electrons.com>
Mon, 10 Nov 2014 17:28:32 +0000 (14:28 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Fri, 14 Nov 2014 19:54:28 +0000 (17:54 -0200)
In order to have subsytem agnostic media bus format definitions we've
moved media bus definition to include/uapi/linux/media-bus-format.h and
prefixed enum values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT.

Reference new definitions in all usb drivers.

Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/usb/cx231xx/cx231xx-417.c
drivers/media/usb/cx231xx/cx231xx-video.c
drivers/media/usb/em28xx/em28xx-camera.c
drivers/media/usb/go7007/go7007-v4l2.c
drivers/media/usb/pvrusb2/pvrusb2-hdw.c

index 8998fa4a43f6fff1cc723bbc7086d1181aa72dd0..3f295b4d1a3dc25c76f76adb670b00fd49c57cc3 100644 (file)
@@ -1887,7 +1887,7 @@ static int cx231xx_s_video_encoding(struct cx2341x_handler *cxhdl, u32 val)
        /* fix videodecoder resolution */
        fmt.width = cxhdl->width / (is_mpeg1 ? 2 : 1);
        fmt.height = cxhdl->height;
-       fmt.code = V4L2_MBUS_FMT_FIXED;
+       fmt.code = MEDIA_BUS_FMT_FIXED;
        v4l2_subdev_call(dev->sd_cx25840, video, s_mbus_fmt, &fmt);
        return 0;
 }
index 4c5bba2e89f4cbd7b1cd408475bffe5f3c607067..53ca12c1ff699b3f26ba4fb03df03c5cd7a6a8bb 100644 (file)
@@ -968,7 +968,7 @@ static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
        dev->height = f->fmt.pix.height;
        dev->format = fmt;
 
-       v4l2_fill_mbus_format(&mbus_fmt, &f->fmt.pix, V4L2_MBUS_FMT_FIXED);
+       v4l2_fill_mbus_format(&mbus_fmt, &f->fmt.pix, MEDIA_BUS_FMT_FIXED);
        call_all(dev, video, s_mbus_fmt, &mbus_fmt);
        v4l2_fill_pix_format(&f->fmt.pix, &mbus_fmt);
 
@@ -1013,7 +1013,7 @@ static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id norm)
           resolution (since a standard change effects things like the number
           of lines in VACT, etc) */
        memset(&mbus_fmt, 0, sizeof(mbus_fmt));
-       mbus_fmt.code = V4L2_MBUS_FMT_FIXED;
+       mbus_fmt.code = MEDIA_BUS_FMT_FIXED;
        mbus_fmt.width = dev->width;
        mbus_fmt.height = dev->height;
        call_all(dev, video, s_mbus_fmt, &mbus_fmt);
index 6d2ea9afd57b42b7fb323e2fdc81ec9064165c2d..38cf6c8491a432761782b01199d76a707eeb5f6b 100644 (file)
@@ -430,7 +430,7 @@ int em28xx_init_camera(struct em28xx *dev)
                        break;
                }
 
-               fmt.code = V4L2_MBUS_FMT_YUYV8_2X8;
+               fmt.code = MEDIA_BUS_FMT_YUYV8_2X8;
                fmt.width = 640;
                fmt.height = 480;
                v4l2_subdev_call(subdev, video, s_mbus_fmt, &fmt);
index ec799b4d88be41e87b55d319b60d08ab7b179d91..d6bf982efa4251125db96872d5f876512c3c9dee 100644 (file)
@@ -252,7 +252,7 @@ static int set_capture_size(struct go7007 *go, struct v4l2_format *fmt, int try)
        if (go->board_info->sensor_flags & GO7007_SENSOR_SCALING) {
                struct v4l2_mbus_framefmt mbus_fmt;
 
-               mbus_fmt.code = V4L2_MBUS_FMT_FIXED;
+               mbus_fmt.code = MEDIA_BUS_FMT_FIXED;
                mbus_fmt.width = fmt ? fmt->fmt.pix.width : width;
                mbus_fmt.height = height;
                go->encoder_h_halve = 0;
index 9623b6218214eb1e5abb6d2336b04a1c8b76ac6d..2fd9b5e0e2a909415ac8bae04cda4f32b7fce7ef 100644 (file)
@@ -2966,7 +2966,7 @@ static void pvr2_subdev_update(struct pvr2_hdw *hdw)
                memset(&fmt, 0, sizeof(fmt));
                fmt.width = hdw->res_hor_val;
                fmt.height = hdw->res_ver_val;
-               fmt.code = V4L2_MBUS_FMT_FIXED;
+               fmt.code = MEDIA_BUS_FMT_FIXED;
                pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_size(%dx%d)",
                           fmt.width, fmt.height);
                v4l2_device_call_all(&hdw->v4l2_dev, 0, video, s_mbus_fmt, &fmt);