Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 23634
b: refs/heads/master
c: 5245953
h: refs/heads/master
v: v3
  • Loading branch information
Andrew Morton authored and Mauro Carvalho Chehab committed Mar 24, 2006
1 parent 8d460db commit 93a4519
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2ae151911e31e6a012a46431cc515cc251242573
refs/heads/master: 5245953e1893152662dad47c87fa88213d5d09a1
21 changes: 12 additions & 9 deletions trunk/drivers/media/video/v4l2-common.c
Original file line number Diff line number Diff line change
Expand Up @@ -481,9 +481,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%08d, frames=%d, userbits=0x%08x\n",
"flags=0x%08d, frames=%d, userbits=0x%p",
s,tc->hours,tc->minutes,tc->seconds,
tc->type, tc->flags, tc->frames, (__u32) tc->userbits);
tc->type, tc->flags, tc->frames, tc->userbits);
break;
}
case VIDIOC_QUERYCAP:
Expand Down Expand Up @@ -574,9 +574,10 @@ void v4l_printk_ioctl_arg(char *s,unsigned int cmd, void *arg)
{
struct v4l2_input *p=arg;
printk ("%s: index=%d, name=%s, type=%d, audioset=%d, "
"tuner=%d, std=%lld, status=%d\n", s,
"tuner=%d, std=%Ld, status=%d\n", s,
p->index,p->name,p->type,p->audioset,
p->tuner,p->std,
p->tuner,
(unsigned long long)p->std,
p->status);
break;
}
Expand Down Expand Up @@ -620,9 +621,10 @@ void v4l_printk_ioctl_arg(char *s,unsigned int cmd, void *arg)
{
struct v4l2_output *p=arg;
printk ("%s: index=%d, name=%s,type=%d, audioset=%d, "
"modulator=%d, std=%lld\n",
"modulator=%d, std=%Ld\n",
s,p->index,p->name,p->type,p->audioset,
p->modulator,p->std);
p->modulator,
(unsigned long long)p->std);
break;
}
case VIDIOC_QUERYCTRL:
Expand Down Expand Up @@ -686,8 +688,9 @@ void v4l_printk_ioctl_arg(char *s,unsigned int cmd, void *arg)
case VIDIOC_ENUMSTD:
{
struct v4l2_standard *p=arg;
printk ("%s: index=%d, id=%lld, name=%s, fps=%d/%d, framelines=%d\n", s,
p->index, p->id, p->name,
printk ("%s: index=%d, id=%Ld, name=%s, fps=%d/%d, "
"framelines=%d\n", s, p->index,
(unsigned long long)p->id, p->name,
p->frameperiod.numerator,
p->frameperiod.denominator,
p->framelines);
Expand Down Expand Up @@ -907,7 +910,7 @@ void v4l_printk_ioctl_arg(char *s,unsigned int cmd, void *arg)
{
v4l2_std_id *p=arg;

printk ("%s: value=%llu\n", s, *p);
printk ("%s: value=%Lu\n", s, (unsigned long long)*p);
break;
}
}
Expand Down

0 comments on commit 93a4519

Please sign in to comment.