Commit 63736784 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

V4L/DVB (6805): video std is a bitmask. Better to print in hexa

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 225ba900
...@@ -973,7 +973,7 @@ static int __video_do_ioctl(struct inode *inode, struct file *file, ...@@ -973,7 +973,7 @@ static int __video_do_ioctl(struct inode *inode, struct file *file,
*id = vfd->current_norm; *id = vfd->current_norm;
dbgarg (cmd, "value=%Lu\n", (long long unsigned) *id); dbgarg (cmd, "value=%08Lx\n", (long long unsigned) *id);
ret=0; ret=0;
break; break;
...@@ -982,7 +982,7 @@ static int __video_do_ioctl(struct inode *inode, struct file *file, ...@@ -982,7 +982,7 @@ static int __video_do_ioctl(struct inode *inode, struct file *file,
{ {
v4l2_std_id *id = arg,norm; v4l2_std_id *id = arg,norm;
dbgarg (cmd, "value=%Lu\n", (long long unsigned) *id); dbgarg (cmd, "value=%08Lx\n", (long long unsigned) *id);
norm = (*id) & vfd->tvnorms; norm = (*id) & vfd->tvnorms;
if ( vfd->tvnorms && !norm) /* Check if std is supported */ if ( vfd->tvnorms && !norm) /* Check if std is supported */
...@@ -1008,7 +1008,7 @@ static int __video_do_ioctl(struct inode *inode, struct file *file, ...@@ -1008,7 +1008,7 @@ static int __video_do_ioctl(struct inode *inode, struct file *file,
break; break;
ret=vfd->vidioc_querystd(file, fh, arg); ret=vfd->vidioc_querystd(file, fh, arg);
if (!ret) if (!ret)
dbgarg (cmd, "detected std=%Lu\n", dbgarg (cmd, "detected std=%08Lx\n",
(unsigned long long)*p); (unsigned long long)*p);
break; break;
} }
...@@ -1028,7 +1028,7 @@ static int __video_do_ioctl(struct inode *inode, struct file *file, ...@@ -1028,7 +1028,7 @@ static int __video_do_ioctl(struct inode *inode, struct file *file,
if (!ret) if (!ret)
dbgarg (cmd, "index=%d, name=%s, type=%d, " dbgarg (cmd, "index=%d, name=%s, type=%d, "
"audioset=%d, " "audioset=%d, "
"tuner=%d, std=%Ld, status=%d\n", "tuner=%d, std=%08Lx, status=%d\n",
p->index,p->name,p->type,p->audioset, p->index,p->name,p->type,p->audioset,
p->tuner, p->tuner,
(unsigned long long)p->std, (unsigned long long)p->std,
......
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