From: Marc Zyngier <marc.zyngier@arm.com>
To: Qiang Zhao <qiang.zhao@nxp.com>,
"oss@buserror.net" <oss@buserror.net>,
"tglx@linutronix.de" <tglx@linutronix.de>
Cc: "jason@lakedaemon.net" <jason@lakedaemon.net>,
Xiaobo Xie <xiaobo.xie@nxp.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linuxppc-dev@lists.ozlabs.org" <linuxppc-dev@lists.ozlabs.org>
Subject: Re: [PATCH v6 2/4] irqchip/qeic: merge qeic init code from platforms to a common function
Date: Fri, 16 Dec 2016 08:54:05 +0000 [thread overview]
Message-ID: <44770f45-a949-80ea-107f-236be2f83f5d@arm.com> (raw)
In-Reply-To: <AM3PR04MB118566A013D838C6E7E17D90919C0@AM3PR04MB1185.eurprd04.prod.outlook.com>
On 16/12/16 08:43, Qiang Zhao wrote:
> On 16/12/16 04:33, Marc Zyngier <marc.zyngier@arm.com> wrote:
>
>> -----Original Message-----
>> From: Marc Zyngier [mailto:marc.zyngier@arm.com]
>> Sent: Friday, December 16, 2016 4:33 PM
>> To: Qiang Zhao <qiang.zhao@nxp.com>; oss@buserror.net; tglx@linutronix.de
>> Cc: jason@lakedaemon.net; Xiaobo Xie <xiaobo.xie@nxp.com>; linux-
>> kernel@vger.kernel.org; linuxppc-dev@lists.ozlabs.org
>> Subject: Re: [PATCH v6 2/4] irqchip/qeic: merge qeic init code from platforms to
>> a common function
>>
>> On 28/09/16 04:25, Zhao Qiang wrote:
>>> The codes of qe_ic init from a variety of platforms are redundant,
>>> merge them to a common function and put it to irqchip/irq-qeic.c
>>>
>>> For non-p1021_mds mpc85xx_mds boards, use "qe_ic_init(np, 0,
>>> qe_ic_cascade_low_mpic, qe_ic_cascade_high_mpic);" instead of
>>> "qe_ic_init(np, 0, qe_ic_cascade_muxed_mpic, NULL);".
>>>
>>> qe_ic_cascade_muxed_mpic was used for boards has the same interrupt
>>> number for low interrupt and high interrupt, qe_ic_init has checked if
>>> "low interrupt == high interrupt"
>>>
>>> Signed-off-by: Zhao Qiang <qiang.zhao@nxp.com>
>>> ---
>>> Changes for v2:
>>> - modify subject and commit msg
>>> - add check for qeic by type
>>> Changes for v3:
>>> - na
>>> Changes for v4:
>>> - na
>>> Changes for v5:
>>> - na
>>> Changes for v6:
>>> - rebase
>>>
>>> arch/powerpc/platforms/83xx/misc.c | 15 ---------------
>>> arch/powerpc/platforms/85xx/corenet_generic.c | 9 ---------
>>> arch/powerpc/platforms/85xx/mpc85xx_mds.c | 14 --------------
>>> arch/powerpc/platforms/85xx/mpc85xx_rdb.c | 16 ----------------
>>> arch/powerpc/platforms/85xx/twr_p102x.c | 14 --------------
>>> drivers/irqchip/irq-qeic.c | 16 ++++++++++++++++
>>> 6 files changed, 16 insertions(+), 68 deletions(-)
>>>
>>
>> [...]
>>
>>> --- a/drivers/irqchip/irq-qeic.c
>>> +++ b/drivers/irqchip/irq-qeic.c
>>> @@ -598,4 +598,20 @@ static int __init init_qe_ic_sysfs(void)
>>> return 0;
>>> }
>>>
>>> +static int __init qeic_of_init(void)
>>> +{
>>> + struct device_node *np;
>>> +
>>> + np = of_find_compatible_node(NULL, NULL, "fsl,qe-ic");
>>> + if (!np) {
>>> + np = of_find_node_by_type(NULL, "qeic");
>>> + if (!np)
>>> + return;
>>> + }
>>> + qe_ic_init(np, 0, qe_ic_cascade_low_mpic,
>>> + qe_ic_cascade_high_mpic);
>>> + of_node_put(np);
>>> +}
>>
>> Have you actually compiled that code?
>
> Yes.
And the abundance of warnings that the compiler certainly spits doesn't
strike you as an issue that should be addressed before posting the patches?
Thanks,
M.
--
Jazz is not dead. It just smells funny...
next prev parent reply other threads:[~2016-12-16 8:54 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-28 3:25 [PATCH v6 1/4] irqchip/qeic: move qeic driver from drivers/soc/fsl/qe Zhao Qiang
2016-09-28 3:25 ` [PATCH v6 2/4] irqchip/qeic: merge qeic init code from platforms to a common function Zhao Qiang
2016-12-16 8:32 ` Marc Zyngier
2016-12-16 8:43 ` Qiang Zhao
2016-12-16 8:54 ` Marc Zyngier [this message]
2016-09-28 3:25 ` [PATCH v6 3/4] irqchip/qeic: merge qeic_of_init into qe_ic_init Zhao Qiang
2016-09-28 3:25 ` [PATCH v6 4/4] irqchip/qeic: remove PPCisms for QEIC Zhao Qiang
2016-12-16 2:55 ` [PATCH v6 1/4] irqchip/qeic: move qeic driver from drivers/soc/fsl/qe Qiang Zhao
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=44770f45-a949-80ea-107f-236be2f83f5d@arm.com \
--to=marc.zyngier@arm.com \
--cc=jason@lakedaemon.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=oss@buserror.net \
--cc=qiang.zhao@nxp.com \
--cc=tglx@linutronix.de \
--cc=xiaobo.xie@nxp.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®