diff options
author | Stefan Ringel <stefan.ringel@arcor.de> | 2011-05-09 21:54:02 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-05-21 01:08:32 +0200 |
commit | 2f349daa0187abf5fd5af4827de023dc609e5909 (patch) | |
tree | 2325560b090562ade44975bd318cf074cb15adc5 /drivers | |
parent | [media] tm6000: change from ioctl to unlocked_ioctl (diff) | |
download | linux-2f349daa0187abf5fd5af4827de023dc609e5909.tar.xz linux-2f349daa0187abf5fd5af4827de023dc609e5909.zip |
[media] tm6000: add pts logging
Signed-off-by: Stefan Ringel <stefan.ringel@arcor.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/tm6000/tm6000-video.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/staging/tm6000/tm6000-video.c b/drivers/staging/tm6000/tm6000-video.c index 2d83204883ad..48023965656c 100644 --- a/drivers/staging/tm6000/tm6000-video.c +++ b/drivers/staging/tm6000/tm6000-video.c @@ -355,10 +355,14 @@ static int copy_streams(u8 *data, unsigned long len, case TM6000_URB_MSG_VBI: /* Need some code to copy vbi buffer */ break; - case TM6000_URB_MSG_PTS: + case TM6000_URB_MSG_PTS: { /* Need some code to copy pts */ + u32 pts; + pts = *(u32 *)ptr; + printk(KERN_INFO "%s: field %d, PTS %x", dev->name, field, pts); break; } + } } if (ptr + pktsize > endp) { /* End of URB packet, but cmd processing is not |