linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
To: Olivia Mackall <olivia@selenic.com>,
	Herbert Xu <herbert@gondor.apana.org.au>
Cc: "Alexandre Belloni" <alexandre.belloni@bootlin.com>,
	"Tomer Maimon" <tmaimon77@gmail.com>,
	"Martin Kaiser" <martin@kaiser.cx>,
	"Alexandre Torgue" <alexandre.torgue@foss.st.com>,
	"Claudiu Beznea" <claudiu.beznea@tuxon.dev>,
	"Alim Akhtar" <alim.akhtar@samsung.com>,
	linux-stm32@st-md-mailman.stormreply.com,
	"Rob Herring" <robh@kernel.org>,
	linux-samsung-soc@vger.kernel.org,
	"Benjamin Fair" <benjaminfair@google.com>,
	openbmc@lists.ozlabs.org, "Nancy Yuen" <yuenn@google.com>,
	"Hadar Gat" <hadar.gat@arm.com>,
	"Deepak Saxena" <dsaxena@plexity.net>,
	kernel@pengutronix.de, "Yangtao Li" <frank.li@vivo.com>,
	"Yu Zhe" <yuzhe@nfschina.com>,
	"Andrei Coardos" <aboutphysycs@gmail.com>,
	"Łukasz Stelmach" <l.stelmach@samsung.com>,
	"Tali Perry" <tali.perry1@gmail.com>,
	"Alexandru Ardelean" <alex@shruggie.ro>,
	linux-arm-kernel@lists.infradead.org,
	"Avi Fishman" <avifishman70@gmail.com>,
	"Patrick Venture" <venture@google.com>,
	"Krzysztof Kozlowski" <krzysztof.kozlowski@linaro.org>,
	linux-crypto@vger.kernel.org,
	"Maxime Coquelin" <mcoquelin.stm32@gmail.com>,
	"Gatien Chevallier" <gatien.chevallier@foss.st.com>
Subject: [PATCH 00/12] hwrng: Convert to platform remove callback returning
Date: Sun, 10 Dec 2023 23:12:15 +0100	[thread overview]
Message-ID: <cover.1702245873.git.u.kleine-koenig@pengutronix.de> (raw)

Hello,

this series converts all hwrng platform drivers to use .remove_new.
See commit 5c5a7680e67b ("platform: Provide a remove callback that
returns no value") for details and the eventual goal.

All driver conversions are trivial as all their remove callbacks return
0 (as good drivers should do).

All patches are pairwise independant. These patches should go in via the
usual hwrng tree. It's merge window material.

Best regards
Uwe

Uwe Kleine-König (12):
  hwrng: atmel - Convert to platform remove callback returning void
  hwrng: cctrng - Convert to platform remove callback returning void
  hwrng: exynos - Convert to platform remove callback returning void
  hwrng: ingenic - Convert to platform remove callback returning void
  hwrng: ks-sa - Convert to platform remove callback returning void
  hwrng: mxc - Convert to platform remove callback returning void
  hwrng: n2 - Convert to platform remove callback returning void
  hwrng: npcm - Convert to platform remove callback returning void
  hwrng: omap - Convert to platform remove callback returning void
  hwrng: stm32 - Convert to platform remove callback returning void
  hwrng: timeriomem - Convert to platform remove callback returning void
  hwrng: xgene - Convert to platform remove callback returning void

 drivers/char/hw_random/atmel-rng.c      | 6 ++----
 drivers/char/hw_random/cctrng.c         | 6 ++----
 drivers/char/hw_random/exynos-trng.c    | 6 ++----
 drivers/char/hw_random/ingenic-rng.c    | 6 ++----
 drivers/char/hw_random/ks-sa-rng.c      | 6 ++----
 drivers/char/hw_random/mxc-rnga.c       | 6 ++----
 drivers/char/hw_random/n2-drv.c         | 6 ++----
 drivers/char/hw_random/npcm-rng.c       | 6 ++----
 drivers/char/hw_random/omap-rng.c       | 6 ++----
 drivers/char/hw_random/stm32-rng.c      | 6 ++----
 drivers/char/hw_random/timeriomem-rng.c | 6 ++----
 drivers/char/hw_random/xgene-rng.c      | 6 ++----
 12 files changed, 24 insertions(+), 48 deletions(-)


base-commit: bc63de6e6ba0b16652c5fb4b9c9916b9e7ca1f23
-- 
2.42.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

             reply	other threads:[~2023-12-10 22:13 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-10 22:12 Uwe Kleine-König [this message]
2023-12-10 22:12 ` [PATCH 01/12] hwrng: atmel - Convert to platform remove callback returning void Uwe Kleine-König
2023-12-11  8:57   ` Nicolas Ferre
2023-12-10 22:12 ` [PATCH 03/12] hwrng: exynos " Uwe Kleine-König
     [not found]   ` <CGME20231212093133eucas1p1c19ba5aa058ca1e159bfd070aec0f306@eucas1p1.samsung.com>
2023-12-12  9:31     ` Lukasz Stelmach
2023-12-10 22:12 ` [PATCH 10/12] hwrng: stm32 " Uwe Kleine-König
2023-12-15  9:58 ` [PATCH 00/12] hwrng: Convert to platform remove callback returning Herbert Xu

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=cover.1702245873.git.u.kleine-koenig@pengutronix.de \
    --to=u.kleine-koenig@pengutronix.de \
    --cc=aboutphysycs@gmail.com \
    --cc=alex@shruggie.ro \
    --cc=alexandre.belloni@bootlin.com \
    --cc=alexandre.torgue@foss.st.com \
    --cc=alim.akhtar@samsung.com \
    --cc=avifishman70@gmail.com \
    --cc=benjaminfair@google.com \
    --cc=claudiu.beznea@tuxon.dev \
    --cc=dsaxena@plexity.net \
    --cc=frank.li@vivo.com \
    --cc=gatien.chevallier@foss.st.com \
    --cc=hadar.gat@arm.com \
    --cc=herbert@gondor.apana.org.au \
    --cc=kernel@pengutronix.de \
    --cc=krzysztof.kozlowski@linaro.org \
    --cc=l.stelmach@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux-stm32@st-md-mailman.stormreply.com \
    --cc=martin@kaiser.cx \
    --cc=mcoquelin.stm32@gmail.com \
    --cc=olivia@selenic.com \
    --cc=openbmc@lists.ozlabs.org \
    --cc=robh@kernel.org \
    --cc=tali.perry1@gmail.com \
    --cc=tmaimon77@gmail.com \
    --cc=venture@google.com \
    --cc=yuenn@google.com \
    --cc=yuzhe@nfschina.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).