[media] i2c: Make use of media_bus_format enum
In order to have subsytem agnostic media bus format definitions we've moved media bus definitions to include/uapi/linux/media-bus-format.h and prefixed values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Replace all references to the old definitions in i2c 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> Acked-by: Lad, Prabhakar <prabhakar.csengg@gmail.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:

committed by
Mauro Carvalho Chehab

szülő
32b32ce84a
commit
f5fe58fd76
@@ -562,7 +562,7 @@ static int saa6752hs_g_mbus_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefm
|
||||
h->video_format = SAA6752HS_VF_D1;
|
||||
f->width = v4l2_format_table[h->video_format].fmt.pix.width;
|
||||
f->height = v4l2_format_table[h->video_format].fmt.pix.height;
|
||||
f->code = V4L2_MBUS_FMT_FIXED;
|
||||
f->code = MEDIA_BUS_FMT_FIXED;
|
||||
f->field = V4L2_FIELD_INTERLACED;
|
||||
f->colorspace = V4L2_COLORSPACE_SMPTE170M;
|
||||
return 0;
|
||||
@@ -572,7 +572,7 @@ static int saa6752hs_try_mbus_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_frame
|
||||
{
|
||||
int dist_352, dist_480, dist_720;
|
||||
|
||||
f->code = V4L2_MBUS_FMT_FIXED;
|
||||
f->code = MEDIA_BUS_FMT_FIXED;
|
||||
|
||||
dist_352 = abs(f->width - 352);
|
||||
dist_480 = abs(f->width - 480);
|
||||
@@ -599,7 +599,7 @@ static int saa6752hs_s_mbus_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefm
|
||||
{
|
||||
struct saa6752hs_state *h = to_state(sd);
|
||||
|
||||
if (f->code != V4L2_MBUS_FMT_FIXED)
|
||||
if (f->code != MEDIA_BUS_FMT_FIXED)
|
||||
return -EINVAL;
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user