aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2012-04-03 12:16:20 +0530
committerTushar Behera <tushar.behera@linaro.org>2012-05-17 10:36:37 +0530
commita6e89e5ca256d1f87fb43d3fa04a07f0c783a3a6 (patch)
treebc0d205001f3dd5fc3addadd8866045d1e6076a5
parentdc04a799f4c5988484a3e1cae7b7028006147747 (diff)
s5p-tv: Fix compiler warning in mixer_video.c filetracking-samslt-core-3.4-2012.05-1tracking-samslt-core-3.4-2012.05-0
Fixes the following warning: mixer_video.c:857:3: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘unsigned int’ [-Wformat] Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
-rw-r--r--drivers/media/video/s5p-tv/mixer_video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/s5p-tv/mixer_video.c b/drivers/media/video/s5p-tv/mixer_video.c
index f080bf127a2a..d1a3de5d8ffe 100644
--- a/drivers/media/video/s5p-tv/mixer_video.c
+++ b/drivers/media/video/s5p-tv/mixer_video.c
@@ -854,7 +854,7 @@ static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *pfmt,
for (i = 0; i < fmt->num_subframes; ++i) {
alloc_ctxs[i] = layer->mdev->alloc_ctx;
sizes[i] = PAGE_ALIGN(planes[i].sizeimage);
- mxr_dbg(mdev, "size[%d] = %08lx\n", i, sizes[i]);
+ mxr_dbg(mdev, "size[%d] = %08x\n", i, sizes[i]);
}
if (*nbuffers == 0)