aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/platform/s5p-mfc/s5p_mfc_opr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_opr.c b/drivers/media/platform/s5p-mfc/s5p_mfc_opr.c
index c9a227428e6a..00a1d8b2a8c2 100644
--- a/drivers/media/platform/s5p-mfc/s5p_mfc_opr.c
+++ b/drivers/media/platform/s5p-mfc/s5p_mfc_opr.c
@@ -41,7 +41,7 @@ int s5p_mfc_alloc_priv_buf(struct device *dev,
41 struct s5p_mfc_priv_buf *b) 41 struct s5p_mfc_priv_buf *b)
42{ 42{
43 43
44 mfc_debug(3, "Allocating priv: %d\n", b->size); 44 mfc_debug(3, "Allocating priv: %zu\n", b->size);
45 45
46 b->virt = dma_alloc_coherent(dev, b->size, &b->dma, GFP_KERNEL); 46 b->virt = dma_alloc_coherent(dev, b->size, &b->dma, GFP_KERNEL);
47 47
@@ -50,7 +50,7 @@ int s5p_mfc_alloc_priv_buf(struct device *dev,
50 return -ENOMEM; 50 return -ENOMEM;
51 } 51 }
52 52
53 mfc_debug(3, "Allocated addr %p %08x\n", b->virt, b->dma); 53 mfc_debug(3, "Allocated addr %p %pad\n", b->virt, &b->dma);
54 return 0; 54 return 0;
55} 55}
56 56