From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ch1outboundpool.messaging.microsoft.com (ch1ehsobe002.messaging.microsoft.com [216.32.181.182]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id F0690140085 for ; Fri, 28 Mar 2014 14:44:59 +1100 (EST) Message-ID: <5334F022.3050402@freescale.com> Date: Fri, 28 Mar 2014 11:44:34 +0800 From: Hongbo Zhang MIME-Version: 1.0 To: Vinod Koul Subject: Re: [PATCH 3/7] DMA: Freescale: add fsl_dma_free_descriptor() to reduce code duplication References: <1389851246-8564-1-git-send-email-hongbo.zhang@freescale.com> <1389851246-8564-4-git-send-email-hongbo.zhang@freescale.com> <20140311110616.GV1976@intel.com> In-Reply-To: <20140311110616.GV1976@intel.com> Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Cc: linux-kernel@vger.kernel.org, scottwood@freescale.com, dmaengine@vger.kernel.org, dan.j.williams@intel.com, linuxppc-dev@lists.ozlabs.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On 03/11/2014 07:06 PM, Vinod Koul wrote: > On Thu, Jan 16, 2014 at 01:47:22PM +0800, hongbo.zhang@freescale.com wrote: >> From: Hongbo Zhang >> >> There are several places where descriptors are freed using identical code. >> This patch puts this code into a function to reduce code duplication. >> >> Signed-off-by: Hongbo Zhang >> Signed-off-by: Qiang Liu >> --- >> drivers/dma/fsldma.c | 38 ++++++++++++++++++++------------------ >> 1 file changed, 20 insertions(+), 18 deletions(-) >> >> diff --git a/drivers/dma/fsldma.c b/drivers/dma/fsldma.c >> index 95236e6..ad73538 100644 >> --- a/drivers/dma/fsldma.c >> +++ b/drivers/dma/fsldma.c >> @@ -418,6 +418,21 @@ static dma_cookie_t fsl_dma_tx_submit(struct dma_async_tx_descriptor *tx) >> } >> >> /** >> + * fsl_dma_free_descriptor - Free descriptor from channel's DMA pool. >> + * @chan : Freescale DMA channel >> + * @desc: descriptor to be freed >> + */ >> +static void fsl_dma_free_descriptor(struct fsldma_chan *chan, >> + struct fsl_desc_sw *desc) >> +{ >> + list_del(&desc->node); >> +#ifdef FSL_DMA_LD_DEBUG >> + chan_dbg(chan, "LD %p free\n", desc); >> +#endif > why not wrap the define stuff in the defination of chan_dbg rather than its > usage :( > OK, I will fix it by another separate patch. Thanks.