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/saa7110.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/saa7110.c')
-rw-r--r-- | drivers/media/video/saa7110.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/saa7110.c b/drivers/media/video/saa7110.c index 977de63fded0..df4e08d2dceb 100644 --- a/drivers/media/video/saa7110.c +++ b/drivers/media/video/saa7110.c | |||
@@ -251,7 +251,7 @@ static int saa7110_g_input_status(struct v4l2_subdev *sd, u32 *pstatus) | |||
251 | int status = saa7110_read(sd); | 251 | int status = saa7110_read(sd); |
252 | 252 | ||
253 | v4l2_dbg(1, debug, sd, "status=0x%02x norm=%llx\n", | 253 | v4l2_dbg(1, debug, sd, "status=0x%02x norm=%llx\n", |
254 | status, decoder->norm); | 254 | status, (unsigned long long)decoder->norm); |
255 | if (!(status & 0x40)) | 255 | if (!(status & 0x40)) |
256 | res = 0; | 256 | res = 0; |
257 | if (!(status & 0x03)) | 257 | if (!(status & 0x03)) |