diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-03-06 10:15:01 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 12:43:15 -0300 |
commit | cc5cef8ea4fdc41b44007c5d2c116fe97cb87293 (patch) | |
tree | 76743535f52f266ae0c3e1711503ace8ef2d3861 /drivers/media/video/bt856.c | |
parent | 9185cbfc336a080695304bcb781186559d987974 (diff) | |
download | talos-op-linux-cc5cef8ea4fdc41b44007c5d2c116fe97cb87293.tar.gz talos-op-linux-cc5cef8ea4fdc41b44007c5d2c116fe97cb87293.zip |
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/bt856.c')
-rw-r--r-- | drivers/media/video/bt856.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/bt856.c b/drivers/media/video/bt856.c index af3c7a885d50..78db39503947 100644 --- a/drivers/media/video/bt856.c +++ b/drivers/media/video/bt856.c @@ -125,7 +125,7 @@ static int bt856_s_std_output(struct v4l2_subdev *sd, v4l2_std_id std) { struct bt856 *encoder = to_bt856(sd); - v4l2_dbg(1, debug, sd, "set norm %llx\n", std); + v4l2_dbg(1, debug, sd, "set norm %llx\n", (unsigned long long)std); if (std & V4L2_STD_NTSC) { bt856_setbit(encoder, 0xdc, 2, 0); |