The patch number 9591 was added via Mauro Carvalho Chehab <[EMAIL PROTECTED]>
to http://linuxtv.org/hg/v4l-dvb master development tree.

Kernel patches in this development tree may be modified to be backward
compatible with older kernels. Compatibility modifications will be
removed before inclusion into the mainstream Kernel

If anyone has any objections, please let us know by sending a message to:
        [EMAIL PROTECTED]

------

From: Mauro Carvalho Chehab  <[EMAIL PROTECTED]>
v4l core: fix debug printk for enumberating framerates


Priority: normal

Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>


---

 linux/drivers/media/video/v4l2-ioctl.c |   10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff -r 3b840c0a6975 -r 54b6121c0641 linux/drivers/media/video/v4l2-ioctl.c
--- a/linux/drivers/media/video/v4l2-ioctl.c    Wed Nov 12 05:05:28 2008 +0000
+++ b/linux/drivers/media/video/v4l2-ioctl.c    Wed Nov 12 02:03:02 2008 -0200
@@ -1817,9 +1817,13 @@ static int __video_do_ioctl(struct 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");


---

Patch is available at: 
http://linuxtv.org/hg/v4l-dvb/rev/54b6121c064112d7a72999b7611c0dc9e9628269

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to