From: Patrice CHOTARD <patrice.chotard@foss.st.com>
To: Rosen Penev <rosenp@gmail.com>, <linux-rtc@vger.kernel.org>
Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>,
Nathan Chancellor <nathan@kernel.org>,
Nick Desaulniers <ndesaulniers@google.com>,
"Bill Wendling" <morbo@google.com>,
Justin Stitt <justinstitt@google.com>,
"moderated list:ARM/STI ARCHITECTURE"
<linux-arm-kernel@lists.infradead.org>,
open list <linux-kernel@vger.kernel.org>,
"open list:CLANG/LLVM BUILD SUPPORT:Keyword:b(?i:clang|llvm)b"
<llvm@lists.linux.dev>
Subject: Re: [PATCH] rtc: st-lpc: get IRQ via platform_get_irq()
Date: Wed, 5 Aug 2026 09:58:33 +0200 [thread overview]
Message-ID: <493ce8b0-0d4f-474f-9194-d16299ee2296@foss.st.com> (raw)
In-Reply-To: <20260714002259.1392655-1-rosenp@gmail.com>
On 7/14/26 02:22, Rosen Penev wrote:
> Replace irq_of_parse_and_map() with platform_get_irq(), which resolves
> the interrupt from pdev->dev.of_node directly and returns a positive IRQ
> or a negative errno (it never returns 0). Propagate the error on failure
> instead of the previous open-coded "IRQ missing or invalid" / -EINVAL
> message, so -EPROBE_DEFER is handled correctly. The rtc->irq field is a
> signed short, so the negative error code is preserved.
>
> np is still used by of_property_read_u32() for "st,lpc-mode", so it is
> not removed.
>
> Built for ARM (multi_v7_defconfig + CONFIG_RTC_DRV_ST_LPC) with LLVM=1;
> drivers/rtc/rtc-st-lpc.o compiles cleanly.
>
> Assisted-by: opencode:hy3-free
> Signed-off-by: Rosen Penev <rosenp@gmail.com>
> ---
> drivers/rtc/rtc-st-lpc.c | 9 +++------
> 1 file changed, 3 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/rtc/rtc-st-lpc.c b/drivers/rtc/rtc-st-lpc.c
> index c6d4522411b3..ae79ddf24f37 100644
> --- a/drivers/rtc/rtc-st-lpc.c
> +++ b/drivers/rtc/rtc-st-lpc.c
> @@ -18,7 +18,6 @@
> #include <linux/kernel.h>
> #include <linux/module.h>
> #include <linux/of.h>
> -#include <linux/of_irq.h>
> #include <linux/platform_device.h>
> #include <linux/rtc.h>
>
> @@ -212,11 +211,9 @@ static int st_rtc_probe(struct platform_device *pdev)
> if (IS_ERR(rtc->ioaddr))
> return PTR_ERR(rtc->ioaddr);
>
> - rtc->irq = irq_of_parse_and_map(np, 0);
> - if (!rtc->irq) {
> - dev_err(&pdev->dev, "IRQ missing or invalid\n");
> - return -EINVAL;
> - }
> + rtc->irq = platform_get_irq(pdev, 0);
> + if (rtc->irq < 0)
> + return rtc->irq;
>
> ret = devm_request_irq(&pdev->dev, rtc->irq, st_rtc_handler,
> IRQF_NO_AUTOEN, pdev->name, rtc);
Hi Rosen
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Thanks
Patrice
prev parent reply other threads:[~2026-08-05 7:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-14 0:22 [PATCH] rtc: st-lpc: get IRQ via platform_get_irq() Rosen Penev
2026-08-05 7:58 ` Patrice CHOTARD [this message]
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=493ce8b0-0d4f-474f-9194-d16299ee2296@foss.st.com \
--to=patrice.chotard@foss.st.com \
--cc=alexandre.belloni@bootlin.com \
--cc=justinstitt@google.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rtc@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=morbo@google.com \
--cc=nathan@kernel.org \
--cc=ndesaulniers@google.com \
--cc=rosenp@gmail.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