| Submitter | Sachin Kamat |
|---|---|
| Subject | [media] s5p-tv: Fix compiler warning in mixer_video.c file |
| Date | April 3, 2012, 8:04 a.m. |
| List thread | <1333440294-382-1-git-send-email-sachin.kamat@linaro.org> |
| Project | linux-media |
| State | Not Applicable |
| Last updated | April 3, 2012, 11 a.m. |
| Headers | show |
Comments
Patch
diff --git a/drivers/media/video/s5p-tv/mixer_video.c b/drivers/media/video/s5p-tv/mixer_video.c index f7ca5cc..bb33d7c 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)

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> --- drivers/media/video/s5p-tv/mixer_video.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)