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/bt866.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/bt866.c')
-rw-r--r-- | drivers/media/video/bt866.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/bt866.c b/drivers/media/video/bt866.c index 0a32221fa3f9..350cae4b02c3 100644 --- a/drivers/media/video/bt866.c +++ b/drivers/media/video/bt866.c | |||
@@ -91,7 +91,7 @@ static int bt866_write(struct bt866 *encoder, u8 subaddr, u8 data) | |||
91 | 91 | ||
92 | static int bt866_s_std_output(struct v4l2_subdev *sd, v4l2_std_id std) | 92 | static int bt866_s_std_output(struct v4l2_subdev *sd, v4l2_std_id std) |
93 | { | 93 | { |
94 | v4l2_dbg(1, debug, sd, "set norm %llx\n", std); | 94 | v4l2_dbg(1, debug, sd, "set norm %llx\n", (unsigned long long)std); |
95 | 95 | ||
96 | /* Only PAL supported by this driver at the moment! */ | 96 | /* Only PAL supported by this driver at the moment! */ |
97 | if (!(std & V4L2_STD_NTSC)) | 97 | if (!(std & V4L2_STD_NTSC)) |