From patchwork Sun May 3 18:47:02 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Robert Jarzmik X-Patchwork-Id: 6321781 Return-Path: X-Original-To: patchwork-dmaengine@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 922EBBEEE1 for ; Sun, 3 May 2015 18:48:03 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C517820395 for ; Sun, 3 May 2015 18:48:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E8FC420394 for ; Sun, 3 May 2015 18:48:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751499AbbECSrr (ORCPT ); Sun, 3 May 2015 14:47:47 -0400 Received: from smtp03.smtpout.orange.fr ([80.12.242.125]:19455 "EHLO smtp.smtpout.orange.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751389AbbECSrq (ORCPT ); Sun, 3 May 2015 14:47:46 -0400 Received: from belgarion ([109.214.21.214]) by mwinf5d57 with ME id PWnb1q00H4d8VpZ03WngzU; Sun, 03 May 2015 20:47:43 +0200 X-ME-Helo: belgarion X-ME-Date: Sun, 03 May 2015 20:47:43 +0200 X-ME-IP: 109.214.21.214 From: Robert Jarzmik To: Vinod Koul Cc: Jonathan Corbet , Daniel Mack , Haojian Zhuang , dmaengine@vger.kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Arnd Bergmann Subject: Re: [PATCH v2 0/5] Driver for pxa architectures References: <1428781236-25806-1-git-send-email-robert.jarzmik@free.fr> <87egnf7uqp.fsf@belgarion.home> <87lhhek6dz.fsf@belgarion.home> <87egn0jbtf.fsf@belgarion.home> <20150503152300.GU3521@localhost> X-URL: http://belgarath.falguerolles.org/ Date: Sun, 03 May 2015 20:47:02 +0200 In-Reply-To: <20150503152300.GU3521@localhost> (Vinod Koul's message of "Sun, 3 May 2015 20:53:00 +0530") Message-ID: <87vbg9v6qh.fsf@belgarion.home> User-Agent: Gnus/5.130008 (Ma Gnus v0.8) Emacs/24.4 (gnu/linux) MIME-Version: 1.0 Sender: dmaengine-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_HI,T_RP_MATCHES_RCVD,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Vinod Koul writes: >> Would it be possible that I take that through the pxa tree, even it stays in >> drivers/dmaengine ? I want that to land in the next cycle, and I'll take the >> fixes and maintainance anyway on my back. > Sorry about the delay, I should be able to get this done in next few days > and if all ggod then it should in next before eow. Ok, great, that works for me. Given the size of that patch, I'm expecting to release a v3/v4 after your comments. If not, you should be aware that I have a local patch on patch 3/5 in [1]. diff --git a/drivers/dma/pxa_dma.c b/drivers/dma/pxa_dma.c index 9f80d51..5295fb7 100644 --- a/drivers/dma/pxa_dma.c +++ b/drivers/dma/pxa_dma.c @@ -1293,7 +1293,7 @@ static int pxad_init_phys(struct platform_device *op, ret = devm_request_irq(&op->dev, irq, pxad_chan_handler, IRQF_SHARED, "pxa-dma", phy); - if ((nr_irq == 1) && (irq == 0)) + if ((nr_irq == 1) && (i == 0)) ret = devm_request_irq(&op->dev, irq0, pxad_int_handler, IRQF_SHARED, "pxa-dma", pdev);