Commit 1958578d authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

V4L/DVB (9591): v4l core: fix debug printk for enumberating framerates

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 864ec0b7
......@@ -1816,9 +1816,13 @@ static int __video_do_ioctl(struct file *file,
p->discrete.denominator);
break;
case V4L2_FRMIVAL_TYPE_STEPWISE:
dbgarg2("min=%d, max=%d, step=%d\n",
p->stepwise.min, p->stepwise.max,
p->stepwise.step);
dbgarg2("min=%d/%d, max=%d/%d, step=%d/%d\n",
p->stepwise.min.numerator,
p->stepwise.min.denominator,
p->stepwise.max.numerator,
p->stepwise.max.denominator,
p->stepwise.step.numerator,
p->stepwise.step.denominator);
break;
case V4L2_FRMIVAL_TYPE_CONTINUOUS:
dbgarg2("continuous\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment