]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
V4L/DVB (4148): Fix userbits debug prints
authorMauro Carvalho Chehab <mchehab@infradead.org>
Fri, 23 Jun 2006 10:05:22 +0000 (07:05 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Sun, 25 Jun 2006 05:05:13 +0000 (02:05 -0300)
Previously, it were showing the pointer value, instead of
the setted bits.

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/video/v4l2-common.c
drivers/media/video/videodev.c

index bffe48275eb0d82c51c1bcde4ef5eeee34ad233b..2b2c0b3a16ad1bcb29ea6f8c88bffcbbb74dd547 100644 (file)
@@ -486,9 +486,9 @@ void v4l_printk_ioctl_arg(char *s,unsigned int cmd, void *arg)
                                prt_names(p->memory,v4l2_memory_names),
                                p->m.userptr);
                printk ("%s: timecode= %02d:%02d:%02d type=%d, "
-                       "flags=0x%08x, frames=%d, userbits=0x%p\n",
+                       "flags=0x%08x, frames=%d, userbits=0x%08x\n",
                                s,tc->hours,tc->minutes,tc->seconds,
-                               tc->type, tc->flags, tc->frames, tc->userbits);
+                               tc->type, tc->flags, tc->frames, *(__u32 *) tc->userbits);
                break;
        }
        case VIDIOC_QUERYCAP:
index 311149b80e9f48b6fc2d0e11c4388930b5f3e2db..43152297e6d5631fa6a544c67d9fd430c43d7a4d 100644 (file)
@@ -323,7 +323,7 @@ static void dbgbuf(unsigned int cmd, struct video_device *vfd,
        dbgarg2 ("timecode= %02d:%02d:%02d type=%d, "
                "flags=0x%08d, frames=%d, userbits=0x%08x\n",
                        tc->hours,tc->minutes,tc->seconds,
-                       tc->type, tc->flags, tc->frames, (__u32) tc->userbits);
+                       tc->type, tc->flags, tc->frames, *(__u32 *) tc->userbits);
 }
 
 static inline void dbgrect(struct video_device *vfd, char *s,