From cc4454fcaa10701eff39ee34347374bd1e9f04e7 Mon Sep 17 00:00:00 2001 From: Jason Liu <jason.hui.liu@nxp.com> Date: Wed, 25 Oct 2017 06:29:19 +0800 Subject: [PATCH] MLK-16688 driver: media: mxc_jpeg: Remove the unused function to kill the build warnnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The patch fixes the following build warnnings by removing unused function: drivers/media/platform/imx8/mxc-jpeg.c:228:13: warning: ‘print_output’ defined but not used [-Wunused-function] static void print_output(void *addr) ^~~~~~~~~~~~ This patch also does the minor clean up by removing some commented-out code Signed-off-by: Jason Liu <jason.hui.liu@nxp.com> Acked-by: Fugang Duan <fugang.duan@nxp.com> --- drivers/media/platform/imx8/mxc-jpeg.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/drivers/media/platform/imx8/mxc-jpeg.c b/drivers/media/platform/imx8/mxc-jpeg.c index e3a0df6ec5011e..c013e2e3a3c58d 100644 --- a/drivers/media/platform/imx8/mxc-jpeg.c +++ b/drivers/media/platform/imx8/mxc-jpeg.c @@ -225,17 +225,6 @@ static int enum_fmt(struct mxc_jpeg_fmt *mxc_formats, int n, return 0; } -static void print_output(void *addr) -{ - int i; - - for (i = 0x0; i < 0x200; i += 4) { - printk(KERN_DEBUG "%02x %02x %02x %02x\n", ((char *)addr)[i], - ((char *)addr)[i+1], ((char *)addr)[i+2], - ((char *)addr)[i+3]); - } -} - void mxc_jpeg_addrs(struct mxc_jpeg_desc *desc, struct vb2_buffer *b_base0_buf, struct vb2_buffer *bufbase_buf, int offset) { @@ -358,9 +347,6 @@ static void mxc_jpeg_device_run(void *priv) mxc_jpeg_set_desc(dma_handle, jpeg->base_reg, slot); mxc_jpeg_go(jpeg->base_reg); } - //print_descriptor_info(desc); - ////print_output(testaddro); - //print_cast_decoder_info(jpeg->base_reg); spin_unlock_irqrestore(&ctx->mxc_jpeg->hw_lock, flags); } static int mxc_jpeg_job_ready(void *priv) -- GitLab