From: Alexandre Belloni <alexandre.belloni@bootlin.com>
To: "André Draszik" <andre.draszik@linaro.org>
Cc: "Chanwoo Choi" <cw00.choi@samsung.com>,
"Krzysztof Kozlowski" <krzk@kernel.org>,
"Joel Stanley" <joel@jms.id.au>,
"Andrew Jeffery" <andrew@codeconstruct.com.au>,
"Hans Ulli Kroll" <ulli.kroll@googlemail.com>,
"Linus Walleij" <linus.walleij@linaro.org>,
"Neil Armstrong" <neil.armstrong@linaro.org>,
"Kevin Hilman" <khilman@baylibre.com>,
"Jerome Brunet" <jbrunet@baylibre.com>,
"Martin Blumenstingl" <martin.blumenstingl@googlemail.com>,
"Tóth János" <gomba007@gmail.com>,
"Dianlong Li" <long17.cool@163.com>,
linux-kernel@vger.kernel.org, linux-rtc@vger.kernel.org,
linux-samsung-soc@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-aspeed@lists.ozlabs.org, linux-amlogic@lists.infradead.org
Subject: Re: [PATCH 00/18] a few rtc driver cleanups
Date: Sat, 1 Mar 2025 21:36:58 +0100 [thread overview]
Message-ID: <20250301203658839d5482@mail.local> (raw)
In-Reply-To: <20250228-rtc-cleanups-v1-0-b44cec078481@linaro.org>
On 28/02/2025 14:07:13+0000, André Draszik wrote:
> Hi,
>
> While looking at RTC, I noticed that various drivers are keeping
> pointers to data that they're not using themselves throughout their
> lifetime.
>
> So I took the liberty to drop these pointers and this series is the
> result.
>
> The last two patches also convert two drivers to using dev_err_probe(),
> as I looked slightly closer into those two. They don't exactly fit the
> general subject of removal of unneeded pointers, but I wanted to share
> them anyway, since they're ready.
>
> All of this was compile-tested only.
>
> Cheers,
> Andre'
>
> Signed-off-by: André Draszik <andre.draszik@linaro.org>
> ---
> André Draszik (18):
> rtc: max77686: drop needless struct max77686_rtc_info::rtc member
> rtc: s5m: drop needless struct s5m_rtc_info::i2c member
> rtc: aspeed: drop needless struct aspeed_rtc::rtc_dev member
> rtc: ds2404: drop needless struct ds2404::rtc member
> rtc: ep93xx: drop needless struct ep93xx_rtc::rtc member
> rtc: ftrtc010: drop needless struct ftrtc010_rtc::rtc_dev member
> rtc: m48t86: drop needless struct m48t86_rtc_info::rtc member
> rtc: meson: drop needless struct meson_rtc::rtc member
> rtc: meson-vrtc: drop needless struct meson_vrtc_data::rtc member
> rtc: pl030: drop needless struct pl030_rtc::rtc member
> rtc: rx8581: drop needless struct rx8581::rtc member
> rtc: s35390a: drop needless struct s35390a::rtc member
> rtc: sd2405al: drop needless struct sd2405al::rtc member
> rtc: sd3078: drop needless struct sd3078::rtc member
My main concern with this is that as soon as we introduce irq support,
we are going to need the rtc pointer back in the struct. But I guess
that most of them are old enough to say that nobody is interested in irq
support.
> rtc: rx8581: drop needless struct rx8581
> rtc: sd3078: drop needless struct sd3078
I guess you could squash those two with the previous ones touching the
respective drivers because you are the one removing the last remaining
struct member.
> rtc: max77686: use dev_err_probe() where appropriate
> rtc: s5m: convert to dev_err_probe() where appropriate
>
> drivers/rtc/rtc-aspeed.c | 16 ++++-----
> drivers/rtc/rtc-ds2404.c | 14 ++++----
> drivers/rtc/rtc-ep93xx.c | 16 ++++-----
> drivers/rtc/rtc-ftrtc010.c | 17 +++++----
> drivers/rtc/rtc-m48t86.c | 14 ++++----
> drivers/rtc/rtc-max77686.c | 37 +++++++++----------
> drivers/rtc/rtc-meson-vrtc.c | 12 +++----
> drivers/rtc/rtc-meson.c | 16 ++++-----
> drivers/rtc/rtc-pl030.c | 14 ++++----
> drivers/rtc/rtc-rx8581.c | 85 +++++++++++++++++++-------------------------
> drivers/rtc/rtc-s35390a.c | 22 ++++++------
> drivers/rtc/rtc-s5m.c | 58 +++++++++++++-----------------
> drivers/rtc/rtc-sd2405al.c | 16 ++++-----
> drivers/rtc/rtc-sd3078.c | 71 +++++++++++++++---------------------
> 14 files changed, 183 insertions(+), 225 deletions(-)
> ---
> base-commit: 0226d0ce98a477937ed295fb7df4cc30b46fc304
> change-id: 20250228-rtc-cleanups-12c0b5123ea4
>
> Best regards,
> --
> André Draszik <andre.draszik@linaro.org>
>
--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
next prev parent reply other threads:[~2025-03-01 20:38 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-28 14:07 [PATCH 00/18] a few rtc driver cleanups André Draszik
2025-02-28 14:07 ` [PATCH 01/18] rtc: max77686: drop needless struct max77686_rtc_info::rtc member André Draszik
2025-02-28 17:30 ` Krzysztof Kozlowski
2025-02-28 14:07 ` [PATCH 02/18] rtc: s5m: drop needless struct s5m_rtc_info::i2c member André Draszik
2025-02-28 17:31 ` Krzysztof Kozlowski
2025-03-01 17:47 ` kernel test robot
2025-02-28 14:07 ` [PATCH 03/18] rtc: aspeed: drop needless struct aspeed_rtc::rtc_dev member André Draszik
2025-03-18 0:58 ` Andrew Jeffery
2025-02-28 14:07 ` [PATCH 04/18] rtc: ds2404: drop needless struct ds2404::rtc member André Draszik
2025-02-28 14:07 ` [PATCH 05/18] rtc: ep93xx: drop needless struct ep93xx_rtc::rtc member André Draszik
2025-02-28 14:07 ` [PATCH 06/18] rtc: ftrtc010: drop needless struct ftrtc010_rtc::rtc_dev member André Draszik
2025-03-01 18:12 ` Linus Walleij
2025-02-28 14:07 ` [PATCH 07/18] rtc: m48t86: drop needless struct m48t86_rtc_info::rtc member André Draszik
2025-02-28 14:07 ` [PATCH 08/18] rtc: meson: drop needless struct meson_rtc::rtc member André Draszik
2025-02-28 14:07 ` [PATCH 09/18] rtc: meson-vrtc: drop needless struct meson_vrtc_data::rtc member André Draszik
2025-02-28 14:07 ` [PATCH 10/18] rtc: pl030: drop needless struct pl030_rtc::rtc member André Draszik
2025-03-01 18:11 ` Linus Walleij
2025-02-28 14:07 ` [PATCH 11/18] rtc: rx8581: drop needless struct rx8581::rtc member André Draszik
2025-02-28 14:07 ` [PATCH 12/18] rtc: s35390a: drop needless struct s35390a::rtc member André Draszik
2025-02-28 14:07 ` [PATCH 13/18] rtc: sd2405al: drop needless struct sd2405al::rtc member André Draszik
2025-03-03 14:04 ` Tóth János
2025-02-28 14:07 ` [PATCH 14/18] rtc: sd3078: drop needless struct sd3078::rtc member André Draszik
2025-02-28 14:07 ` [PATCH 15/18] rtc: rx8581: drop needless struct rx8581 André Draszik
2025-02-28 14:07 ` [PATCH 16/18] rtc: sd3078: drop needless struct sd3078 André Draszik
2025-02-28 14:07 ` [PATCH 17/18] rtc: max77686: use dev_err_probe() where appropriate André Draszik
2025-03-01 13:18 ` Krzysztof Kozlowski
2025-02-28 14:07 ` [PATCH 18/18] rtc: s5m: convert to " André Draszik
2025-03-01 13:19 ` Krzysztof Kozlowski
2025-03-01 20:36 ` Alexandre Belloni [this message]
2025-03-03 8:45 ` [PATCH 00/18] a few rtc driver cleanups André Draszik
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=20250301203658839d5482@mail.local \
--to=alexandre.belloni@bootlin.com \
--cc=andre.draszik@linaro.org \
--cc=andrew@codeconstruct.com.au \
--cc=cw00.choi@samsung.com \
--cc=gomba007@gmail.com \
--cc=jbrunet@baylibre.com \
--cc=joel@jms.id.au \
--cc=khilman@baylibre.com \
--cc=krzk@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-aspeed@lists.ozlabs.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rtc@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=long17.cool@163.com \
--cc=martin.blumenstingl@googlemail.com \
--cc=neil.armstrong@linaro.org \
--cc=ulli.kroll@googlemail.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;
as well as URLs for NNTP newsgroup(s).