From: "Gabriel L. Somlo" <gsomlo@gmail.com>
To: arnd@arndb.de
Cc: soc@kernel.org, Andrew Davis <afd@ti.com>,
Mark Rutland <mark.rutland@arm.com>,
Lorenzo Pieralisi <lpieralisi@kernel.org>,
Sebastian Reichel <sre@kernel.org>,
Karol Gugala <kgugala@antmicro.com>,
Mateusz Holenko <mholenko@antmicro.com>,
Joel Stanley <joel@jms.id.au>, Mark Brown <broonie@kernel.org>,
Orson Zhai <orsonzhai@gmail.com>,
Baolin Wang <baolin.wang@linux.alibaba.com>,
Chunyan Zhang <zhang.lyra@gmail.com>, Lee Jones <lee@kernel.org>,
Dmitry Osipenko <dmitry.osipenko@collabora.com>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org,
linux-spi@vger.kernel.org
Subject: Re: [PATCH RFC 2/5] drivers/soc/litex: Use devm_register_restart_handler()
Date: Wed, 20 Dec 2023 15:35:21 -0500 [thread overview]
Message-ID: <ZYNQCTIRDj1VAwPJ@errol.ini.cmu.edu> (raw)
In-Reply-To: <20231117161006.87734-3-afd@ti.com>
On Fri, Nov 17, 2023 at 10:10:03AM -0600, Andrew Davis wrote:
> Use device life-cycle managed register function to simplify probe error
> path and eliminate need for explicit remove function.
>
> Signed-off-by: Andrew Davis <afd@ti.com>
Reviewed-by: Gabriel Somlo <gsomlo@gmail.com>
Arnd: the original patch is available here for the purpose of pulling via
the soc tree:
https://lore.kernel.org/lkml/20231117161006.87734-3-afd@ti.com/
Thanks,
--Gabriel
> ---
> drivers/soc/litex/litex_soc_ctrl.c | 23 +++++------------------
> 1 file changed, 5 insertions(+), 18 deletions(-)
>
> diff --git a/drivers/soc/litex/litex_soc_ctrl.c b/drivers/soc/litex/litex_soc_ctrl.c
> index 10813299aa106..7a0096d93c73d 100644
> --- a/drivers/soc/litex/litex_soc_ctrl.c
> +++ b/drivers/soc/litex/litex_soc_ctrl.c
> @@ -69,14 +69,11 @@ static int litex_check_csr_access(void __iomem *reg_addr)
>
> struct litex_soc_ctrl_device {
> void __iomem *base;
> - struct notifier_block reset_nb;
> };
>
> -static int litex_reset_handler(struct notifier_block *this, unsigned long mode,
> - void *cmd)
> +static int litex_reset_handler(struct sys_off_data *data)
> {
> - struct litex_soc_ctrl_device *soc_ctrl_dev =
> - container_of(this, struct litex_soc_ctrl_device, reset_nb);
> + struct litex_soc_ctrl_device *soc_ctrl_dev = data->cb_data;
>
> litex_write32(soc_ctrl_dev->base + RESET_REG_OFF, RESET_REG_VALUE);
> return NOTIFY_DONE;
> @@ -107,11 +104,9 @@ static int litex_soc_ctrl_probe(struct platform_device *pdev)
> if (error)
> return error;
>
> - platform_set_drvdata(pdev, soc_ctrl_dev);
> -
> - soc_ctrl_dev->reset_nb.notifier_call = litex_reset_handler;
> - soc_ctrl_dev->reset_nb.priority = 128;
> - error = register_restart_handler(&soc_ctrl_dev->reset_nb);
> + error = devm_register_restart_handler(&pdev->dev,
> + litex_reset_handler,
> + soc_ctrl_dev);
> if (error) {
> dev_warn(&pdev->dev, "cannot register restart handler: %d\n",
> error);
> @@ -120,20 +115,12 @@ static int litex_soc_ctrl_probe(struct platform_device *pdev)
> return 0;
> }
>
> -static void litex_soc_ctrl_remove(struct platform_device *pdev)
> -{
> - struct litex_soc_ctrl_device *soc_ctrl_dev = platform_get_drvdata(pdev);
> -
> - unregister_restart_handler(&soc_ctrl_dev->reset_nb);
> -}
> -
> static struct platform_driver litex_soc_ctrl_driver = {
> .driver = {
> .name = "litex-soc-controller",
> .of_match_table = of_match_ptr(litex_soc_ctrl_of_match)
> },
> .probe = litex_soc_ctrl_probe,
> - .remove_new = litex_soc_ctrl_remove,
> };
>
> module_platform_driver(litex_soc_ctrl_driver);
> --
> 2.39.2
>
next prev parent reply other threads:[~2023-12-20 20:35 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-17 16:10 [PATCH RFC 0/5] Deprecate register_restart_handler() Andrew Davis
2023-11-17 16:10 ` [PATCH RFC 1/5] kernel/reboot: " Andrew Davis
2023-11-17 16:10 ` [PATCH RFC 2/5] drivers/soc/litex: Use devm_register_restart_handler() Andrew Davis
2023-11-29 10:03 ` Gabriel L. Somlo
2023-12-20 20:35 ` Gabriel L. Somlo [this message]
2023-11-17 16:10 ` [PATCH RFC 3/5] power: reset: gpio-restart: Use devm_register_sys_off_handler() Andrew Davis
2023-11-17 16:10 ` [PATCH RFC 4/5] spi: sprd: adi: Use devm_register_restart_handler() Andrew Davis
2023-11-17 16:10 ` [PATCH RFC 5/5] firmware: psci: Use register_sys_off_handler(SYS_OFF_MODE_RESTART) Andrew Davis
2023-11-27 16:48 ` (subset) [PATCH RFC 0/5] Deprecate register_restart_handler() Mark Brown
2023-11-29 10:09 ` Gabriel L. Somlo
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=ZYNQCTIRDj1VAwPJ@errol.ini.cmu.edu \
--to=gsomlo@gmail.com \
--cc=afd@ti.com \
--cc=arnd@arndb.de \
--cc=baolin.wang@linux.alibaba.com \
--cc=broonie@kernel.org \
--cc=dmitry.osipenko@collabora.com \
--cc=joel@jms.id.au \
--cc=kgugala@antmicro.com \
--cc=lee@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=lpieralisi@kernel.org \
--cc=mark.rutland@arm.com \
--cc=mholenko@antmicro.com \
--cc=orsonzhai@gmail.com \
--cc=soc@kernel.org \
--cc=sre@kernel.org \
--cc=zhang.lyra@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
all inboxes | Powered by JetHome®