From patchwork Tue Jul 3 05:49:25 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 10503007 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 43FD260225 for ; Tue, 3 Jul 2018 05:49:36 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3119E28B16 for ; Tue, 3 Jul 2018 05:49:36 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2427028B30; Tue, 3 Jul 2018 05:49:36 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C951D28B16 for ; Tue, 3 Jul 2018 05:49:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753964AbeGCFtf (ORCPT ); Tue, 3 Jul 2018 01:49:35 -0400 Received: from mail.kernel.org ([198.145.29.99]:39464 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753941AbeGCFte (ORCPT ); Tue, 3 Jul 2018 01:49:34 -0400 Received: from localhost (unknown [171.61.87.109]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 815132087C; Tue, 3 Jul 2018 05:49:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1530596974; bh=VV0p9qXo6vR2L/pVTMMyuQRzyCP+EemsWaNgi/SswYU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=YYziXoi6sdLPfyzj0bVDBiEvvOkIjcf3tWy0hM//ch3/nfEgBgs4qtWsi5Dvskt1V qvZwMcxnQCo39CO2tN3W+sKiMY7XZdgt9ipDUHSKzaCkfUG/WsGr7QZnHfGjJHVdsl ydhXH3dcF3wMVbWJuBhhBaG/GqpTpp+Ydd749VdY= Date: Tue, 3 Jul 2018 11:19:25 +0530 From: Vinod To: Angelo Dureghello Cc: dmaengine@vger.kernel.org, linux-m68k@vger.kernel.org Subject: Re: [PATCH v6 1/2] dmaengine: fsl-edma: extract common fsl-edma code (no changes in behavior intended) Message-ID: <20180703054925.GL22377@vkoul-mobl> References: <20180701163327.13640-1-angelo@sysam.it> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20180701163327.13640-1-angelo@sysam.it> User-Agent: Mutt/1.9.2 (2017-12-15) Sender: dmaengine-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP On 01-07-18, 18:33, Angelo Dureghello wrote: > This patch adds a new fsl-edma-common module to allow new > mcf-edma module code to use most of the fsl-edma code. > > Due to some differences between ColdFire edma (64 channels) and > fsl-edma (32 channels), as register set offsets and some other > points as the different interrupt organization and other minor > things, a common module can collect most of the code for both > 32 and 64 channel edma module versions. I have applied these, thanks. While applying I saw a trailing whitespace error, have fixed that up as below. Also, I saw sparse complain a lot, care to fix those too? -->8---- commit 15efb0b488596a929bc00ce23aeb746ee6a7c14d Author: Vinod Koul Date: Tue Jul 3 11:16:46 2018 +0530 dmaengine: fsl-edma: fix trailing whitespace Signed-off-by: Vinod Koul diff --git a/drivers/dma/fsl-edma-common.h b/drivers/dma/fsl-edma-common.h index e87c2bec882b..8e3c609c62fa 100644 --- a/drivers/dma/fsl-edma-common.h +++ b/drivers/dma/fsl-edma-common.h @@ -159,4 +159,3 @@ int fsl_edma_terminate_all(struct dma_chan *chan); void fsl_edma_issue_pending(struct dma_chan *chan); #endif /* _FSL_EDMA_COMMON_H_ */ -