Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751196AbaKDHEa (ORCPT ); Tue, 4 Nov 2014 02:04:30 -0500 Received: from mailgw01.mediatek.com ([210.61.82.183]:54113 "EHLO mailgw01.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1750877AbaKDHE2 (ORCPT ); Tue, 4 Nov 2014 02:04:28 -0500 X-Listener-Flag: 11101 Subject: Re: [PATCH v5 4/6] ARM: mediatek: Add sysirq interrupt polarity support From: Yingjoe Chen To: Matthias Brugger , Thomas Gleixner , Jiang Liu , Marc Zyngier , CC: Jiang Liu , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Russell King , Jason Cooper , Benjamin Herrenschmidt , Grant Likely , Boris BREZILLON , , , , , , , , , , Sascha Hauer , Olof Johansson , Arnd Bergmann In-Reply-To: <1414576824-16143-5-git-send-email-yingjoe.chen@mediatek.com> References: <1414576824-16143-1-git-send-email-yingjoe.chen@mediatek.com> <1414576824-16143-5-git-send-email-yingjoe.chen@mediatek.com> Content-Type: text/plain; charset="UTF-8" Date: Tue, 4 Nov 2014 15:04:21 +0800 Message-ID: <1415084661.31861.5.camel@mtksdaap41> MIME-Version: 1.0 X-Mailer: Evolution 2.28.3 Content-Transfer-Encoding: 7bit X-MTK: N Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 2014-10-29 at 18:00 +0800, Yingjoe Chen wrote: > diff --git a/drivers/irqchip/irq-mtk-sysirq.c b/drivers/irqchip/irq-mtk-sysirq.c > new file mode 100644 > index 0000000..4403bcf > --- /dev/null > +++ b/drivers/irqchip/irq-mtk-sysirq.c > +static int mtk_sysirq_domain_alloc(struct irq_domain *domain, unsigned int virq, > + unsigned int nr_irqs, void *arg) > +{ > + int i, ret; > + irq_hw_number_t hwirq; > + struct of_phandle_args *irq_data = arg; > + > + if (irq_data->args_count < 3) > + return -EINVAL; > + > + hwirq = irq_data->args[1]; > + for (i = 0; i < nr_irqs; i++) > + irq_domain_set_hwirq_and_chip(domain, virq + i, hwirq + i, > + &mtk_sysirq_chip, > + domain->host_data); > + > + return irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg); > +} (answering my own patch) The ret is not used in this function. I'll remove it in next version. Besides this, is there anything that should be changed in this series? Joe.C -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/