[media] m2m-deinterlace: fix two warnings
authorMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 6 Aug 2012 12:06:34 +0000 (09:06 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 6 Aug 2012 12:06:34 +0000 (09:06 -0300)
drivers/media/video/m2m-deinterlace.c: In function ‘deinterlace_issue_dma’:
drivers/media/video/m2m-deinterlace.c:363:3: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘dma_addr_t’ [-Wformat]
drivers/media/video/m2m-deinterlace.c:363:3: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘dma_addr_t’ [-Wformat]

Cc: Javier Martin <javier.martin@vista-silicon.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/m2m-deinterlace.c

index 11071679d5b2d5f669911774800971fccfd1de38..a38c15201d1d2bf1d0ccbcc10a12d5f1a16063a9 100644 (file)
@@ -362,7 +362,8 @@ static void deinterlace_issue_dma(struct deinterlace_ctx *ctx, int op,
        if (dma_submit_error(ctx->cookie)) {
                v4l2_warn(&pcdev->v4l2_dev,
                          "DMA submit error %d with src=0x%x dst=0x%x len=0x%x\n",
-                         ctx->cookie, p_in, p_out, s_size * 3/2);
+                         ctx->cookie, (unsigned)p_in, (unsigned)p_out,
+                         s_size * 3/2);
                return;
        }
 
This page took 0.029895 seconds and 5 git commands to generate.