Hi Sachin Kamat, Thanks for the patch. However, the patch is already a duplicate of http://thread.gmane.org/gmane.linux.drivers.video-input-infrastructure/45756/focus=45752 Regards, Tomasz Stanislawski On 04/03/2012 10:04 AM, Sachin Kamat wrote: > 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@xxxxxxxxxx> > --- > 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 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) -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html