diff options
author | Tomasz Stanislawski <t.stanislaws@samsung.com> | 2012-03-09 05:07:28 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-05-20 08:00:37 -0400 |
commit | c31e3c4b1e70ff6bdf0cf415be15c399c4742def (patch) | |
tree | 609c1690506fd2f0d68d361e321421264153c699 /drivers/media/video/s5p-tv | |
parent | c1bf9c654a752b68be1b4408b33443a17515a671 (diff) |
[media] v4l: s5p-tv: mixer: fix compilation warning
This patch fixes compilation warning in debug message. The warning is caused
by incorrect 'unsigned' to 'unsigned long' conversion in dev_dbg.
Signed-off-by: Tomasz Stanislawski <t.stanislaws@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/s5p-tv')
-rw-r--r-- | drivers/media/video/s5p-tv/mixer_video.c | 2 |
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 cc1e9b9b53ba..fa7feb53ffd7 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, | |||
854 | for (i = 0; i < fmt->num_subframes; ++i) { | 854 | for (i = 0; i < fmt->num_subframes; ++i) { |
855 | alloc_ctxs[i] = layer->mdev->alloc_ctx; | 855 | alloc_ctxs[i] = layer->mdev->alloc_ctx; |
856 | sizes[i] = planes[i].sizeimage; | 856 | sizes[i] = planes[i].sizeimage; |
857 | mxr_dbg(mdev, "size[%d] = %08lx\n", i, sizes[i]); | 857 | mxr_dbg(mdev, "size[%d] = %08x\n", i, sizes[i]); |
858 | } | 858 | } |
859 | 859 | ||
860 | if (*nbuffers == 0) | 860 | if (*nbuffers == 0) |