diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-11-11 23:03:02 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-29 14:53:33 -0500 |
commit | 1958578da6f3971227fca94a62429cdf0bd3c699 (patch) | |
tree | f581f7c5f90c520044c8aadaab778320e7db209b /drivers/media/video/v4l2-ioctl.c | |
parent | 864ec0b7a03c8401e6e49f9e480489478ea14cb5 (diff) |
V4L/DVB (9591): v4l core: fix debug printk for enumberating framerates
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/v4l2-ioctl.c')
-rw-r--r-- | drivers/media/video/v4l2-ioctl.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/media/video/v4l2-ioctl.c b/drivers/media/video/v4l2-ioctl.c index 98a0bf22e43c..bef4286933a1 100644 --- a/drivers/media/video/v4l2-ioctl.c +++ b/drivers/media/video/v4l2-ioctl.c | |||
@@ -1816,9 +1816,13 @@ static int __video_do_ioctl(struct file *file, | |||
1816 | p->discrete.denominator); | 1816 | p->discrete.denominator); |
1817 | break; | 1817 | break; |
1818 | case V4L2_FRMIVAL_TYPE_STEPWISE: | 1818 | case V4L2_FRMIVAL_TYPE_STEPWISE: |
1819 | dbgarg2("min=%d, max=%d, step=%d\n", | 1819 | dbgarg2("min=%d/%d, max=%d/%d, step=%d/%d\n", |
1820 | p->stepwise.min, p->stepwise.max, | 1820 | p->stepwise.min.numerator, |
1821 | p->stepwise.step); | 1821 | p->stepwise.min.denominator, |
1822 | p->stepwise.max.numerator, | ||
1823 | p->stepwise.max.denominator, | ||
1824 | p->stepwise.step.numerator, | ||
1825 | p->stepwise.step.denominator); | ||
1822 | break; | 1826 | break; |
1823 | case V4L2_FRMIVAL_TYPE_CONTINUOUS: | 1827 | case V4L2_FRMIVAL_TYPE_CONTINUOUS: |
1824 | dbgarg2("continuous\n"); | 1828 | dbgarg2("continuous\n"); |