From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965718AbbJ1NRn (ORCPT ); Wed, 28 Oct 2015 09:17:43 -0400 Received: from hqemgate14.nvidia.com ([216.228.121.143]:5722 "EHLO hqemgate14.nvidia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965415AbbJ1NRi (ORCPT ); Wed, 28 Oct 2015 09:17:38 -0400 X-PGP-Universal: processed; by hqnvupgp07.nvidia.com on Wed, 28 Oct 2015 06:08:00 -0700 Subject: Re: [PATCH V3 2/2] dmaengine: tegra-adma: Add support for Tegra210 ADMA To: Laxman Dewangan , Vinod Koul , Stephen Warren , Thierry Reding , Alexandre Courbot , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , "Kumar Gala" References: <1444980919-20331-1-git-send-email-jonathanh@nvidia.com> <1444980919-20331-3-git-send-email-jonathanh@nvidia.com> CC: , , From: Jon Hunter Message-ID: <5630CAE4.4060103@nvidia.com> Date: Wed, 28 Oct 2015 13:17:24 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <1444980919-20331-3-git-send-email-jonathanh@nvidia.com> X-Originating-IP: [10.21.132.135] X-ClientProxiedBy: UKMAIL102.nvidia.com (10.26.138.15) To drukmail101.nvidia.com (10.25.59.19) Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 16/10/15 08:35, Jon Hunter wrote: > Add support for the Tegra210 Audio DMA controller that is used for > transferring data between system memory and the Audio sub-system. > The driver only supports cyclic transfers because this is being solely > used for audio. > > This driver is based upon the work by Dara Ramesh . > > Signed-off-by: Jon Hunter > --- > drivers/dma/Kconfig | 13 + > drivers/dma/Makefile | 1 + > drivers/dma/tegra210-adma.c | 909 ++++++++++++++++++++++++++++++++++++++++++++ > 3 files changed, 923 insertions(+) > create mode 100644 drivers/dma/tegra210-adma.c [snip] > +#ifdef CONFIG_PM_SLEEP > +static int tegra_adma_pm_suspend(struct device *dev) > +{ > + return pm_runtime_suspended(dev); > +} > +#endif The above is also wrong. I will fix this up as well. Jon