Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 123ab622 authored by Guennadi Liakhovetski's avatar Guennadi Liakhovetski Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (12523): tw9910: return updated geometry on successful S_FMT and S_CROP

parent 904078f1
Loading
Loading
Loading
Loading
+12 −2
Original line number Diff line number Diff line
@@ -699,6 +699,11 @@ static int tw9910_set_crop(struct soc_camera_device *icd,
	if (ret < 0)
		goto tw9910_set_fmt_error;

	rect->width = priv->scale->width;
	rect->height = priv->scale->height;
	rect->left = 0;
	rect->top = 0;

	return ret;

tw9910_set_fmt_error:
@@ -720,7 +725,7 @@ static int tw9910_s_fmt(struct v4l2_subdev *sd, struct v4l2_format *f)
		.width	= pix->width,
		.height	= pix->height,
	};
	int i;
	int i, ret;

	/*
	 * check color format
@@ -732,7 +737,12 @@ static int tw9910_s_fmt(struct v4l2_subdev *sd, struct v4l2_format *f)
	if (i == ARRAY_SIZE(tw9910_color_fmt))
		return -EINVAL;

	return tw9910_set_crop(icd, &rect);
	ret = tw9910_set_crop(icd, &rect);
	if (!ret) {
		pix->width = rect.width;
		pix->height = rect.height;
	}
	return ret;
}

static int tw9910_try_fmt(struct v4l2_subdev *sd, struct v4l2_format *f)