diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-03-06 08:15:01 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 11:43:15 -0400 |
commit | cc5cef8ea4fdc41b44007c5d2c116fe97cb87293 (patch) | |
tree | 76743535f52f266ae0c3e1711503ace8ef2d3861 /drivers/media/video/adv7175.c | |
parent | 9185cbfc336a080695304bcb781186559d987974 (diff) |
V4L/DVB (10914): v4l2: fix compile warnings when printing u64 value.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/adv7175.c')
-rw-r--r-- | drivers/media/video/adv7175.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/media/video/adv7175.c b/drivers/media/video/adv7175.c index 709e044f007d..ff1210303295 100644 --- a/drivers/media/video/adv7175.c +++ b/drivers/media/video/adv7175.c | |||
@@ -228,10 +228,11 @@ static int adv7175_s_std_output(struct v4l2_subdev *sd, v4l2_std_id std) | |||
228 | adv7175_write(sd, 0x07, TR0MODE | TR0RST); | 228 | adv7175_write(sd, 0x07, TR0MODE | TR0RST); |
229 | adv7175_write(sd, 0x07, TR0MODE); | 229 | adv7175_write(sd, 0x07, TR0MODE); |
230 | } else { | 230 | } else { |
231 | v4l2_dbg(1, debug, sd, "illegal norm: %llx\n", std); | 231 | v4l2_dbg(1, debug, sd, "illegal norm: %llx\n", |
232 | (unsigned long long)std); | ||
232 | return -EINVAL; | 233 | return -EINVAL; |
233 | } | 234 | } |
234 | v4l2_dbg(1, debug, sd, "switched to %llx\n", std); | 235 | v4l2_dbg(1, debug, sd, "switched to %llx\n", (unsigned long long)std); |
235 | encoder->norm = std; | 236 | encoder->norm = std; |
236 | return 0; | 237 | return 0; |
237 | } | 238 | } |