From: Joe Perches Date: Sun, 2 Aug 2015 20:30:53 +0000 (-0300) Subject: [media] s5p-mfc: Correct misuse of %0x X-Git-Tag: v4.4-rc1~118^2~88 X-Git-Url: http://git.cascardo.info/?a=commitdiff_plain;h=f5b5fbd38776e06df8e74c2fa91a172435400486;p=cascardo%2Flinux.git [media] s5p-mfc: Correct misuse of %0x Correct misuse of 0x%d in logging message. Signed-off-by: Joe Perches Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c b/drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c index e5cb30e1f718..04f8c7b5a86f 100644 --- a/drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c +++ b/drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c @@ -522,7 +522,7 @@ static int s5p_mfc_set_enc_stream_buffer_v6(struct s5p_mfc_ctx *ctx, writel(addr, mfc_regs->e_stream_buffer_addr); /* 16B align */ writel(size, mfc_regs->e_stream_buffer_size); - mfc_debug(2, "stream buf addr: 0x%08lx, size: 0x%d\n", + mfc_debug(2, "stream buf addr: 0x%08lx, size: 0x%x\n", addr, size); return 0;