diff options
author | Pawel Osciak <p.osciak@samsung.com> | 2010-09-10 02:02:32 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-09-27 22:22:08 -0300 |
commit | b17a200f923070104a5b97085ed09ba0f682f637 (patch) | |
tree | faa120e3418e1a21b335bfb008998a100cb941dd /drivers/media | |
parent | 23f0cb62ba3a1a11ab02cb0675f28befc56c89b9 (diff) | |
download | talos-op-linux-b17a200f923070104a5b97085ed09ba0f682f637.tar.gz talos-op-linux-b17a200f923070104a5b97085ed09ba0f682f637.zip |
V4L/DVB: v4l: mem2mem_testdev: fix errorenous comparison
Output buffer has to be at least the size of input buffer, not the other
way around.
Signed-off-by: Pawel Osciak <p.osciak@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/mem2mem_testdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/mem2mem_testdev.c b/drivers/media/video/mem2mem_testdev.c index 4525335f9bd4..d31ec2565056 100644 --- a/drivers/media/video/mem2mem_testdev.c +++ b/drivers/media/video/mem2mem_testdev.c @@ -239,7 +239,7 @@ static int device_process(struct m2mtest_ctx *ctx, return -EFAULT; } - if (in_buf->vb.size < out_buf->vb.size) { + if (in_buf->vb.size > out_buf->vb.size) { v4l2_err(&dev->v4l2_dev, "Output buffer is too small\n"); return -EINVAL; } |