From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7003AC433E0 for ; Fri, 26 Jun 2020 20:38:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4D19F2089D for ; Fri, 26 Jun 2020 20:38:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725952AbgFZUis (ORCPT ); Fri, 26 Jun 2020 16:38:48 -0400 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:15237 "EHLO relay1-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725803AbgFZUir (ORCPT ); Fri, 26 Jun 2020 16:38:47 -0400 X-Originating-IP: 86.202.110.81 Received: from localhost (lfbn-lyo-1-15-81.w86-202.abo.wanadoo.fr [86.202.110.81]) (Authenticated sender: alexandre.belloni@bootlin.com) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 66364240005; Fri, 26 Jun 2020 20:38:45 +0000 (UTC) Date: Fri, 26 Jun 2020 22:38:44 +0200 From: Alexandre Belloni To: Claudiu Beznea Cc: a.zummo@towertech.it, robh+dt@kernel.org, nicolas.ferre@microchip.com, ludovic.desroches@microchip.com, tglx@linutronix.de, jason@lakedaemon.net, maz@kernel.org, linux-rtc@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 1/3] irqchip/atmel-aic5: add support for sam9x60 rtt fixup Message-ID: <20200626203844.GT131826@piout.net> References: <1591779936-18577-1-git-send-email-claudiu.beznea@microchip.com> <1591779936-18577-2-git-send-email-claudiu.beznea@microchip.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1591779936-18577-2-git-send-email-claudiu.beznea@microchip.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/06/2020 12:05:34+0300, Claudiu Beznea wrote: > Add support for SAM9X60 RTT fixup. > > Signed-off-by: Claudiu Beznea Reviewed-by: Alexandre Belloni > --- > drivers/irqchip/irq-atmel-aic5.c | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git a/drivers/irqchip/irq-atmel-aic5.c b/drivers/irqchip/irq-atmel-aic5.c > index fc1b3a9cdafc..fb4ad2aaa727 100644 > --- a/drivers/irqchip/irq-atmel-aic5.c > +++ b/drivers/irqchip/irq-atmel-aic5.c > @@ -310,10 +310,16 @@ static void __init sama5d3_aic_irq_fixup(void) > aic_common_rtc_irq_fixup(); > } > > +static void __init sam9x60_aic_irq_fixup(void) > +{ > + aic_common_rtc_irq_fixup(); > + aic_common_rtt_irq_fixup(); > +} > + > static const struct of_device_id aic5_irq_fixups[] __initconst = { > { .compatible = "atmel,sama5d3", .data = sama5d3_aic_irq_fixup }, > { .compatible = "atmel,sama5d4", .data = sama5d3_aic_irq_fixup }, > - { .compatible = "microchip,sam9x60", .data = sama5d3_aic_irq_fixup }, > + { .compatible = "microchip,sam9x60", .data = sam9x60_aic_irq_fixup }, > { /* sentinel */ }, > }; > > -- > 2.7.4 > -- Alexandre Belloni, Bootlin Embedded Linux and Kernel engineering https://bootlin.com