linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/31] thermal: Convert to platform remove callback returning void
@ 2023-09-27 19:37 Uwe Kleine-König
  2023-09-27 19:37 ` [PATCH 01/31] thermal: amlogic: " Uwe Kleine-König
                   ` (31 more replies)
  0 siblings, 32 replies; 44+ messages in thread
From: Uwe Kleine-König @ 2023-09-27 19:37 UTC (permalink / raw)
  To: Rafael J. Wysocki, Daniel Lezcano
  Cc: Guillaume La Roque, Amit Kucheria, Zhang Rui, linux-pm,
	linux-amlogic, kernel, Miquel Raynal, Florian Fainelli,
	Broadcom internal kernel review list, Ray Jui, Scott Branden,
	Niklas Söderlund, Heiko Stuebner, ye xingchen,
	linux-rpi-kernel, linux-arm-kernel, Balsam CHIHI, Adam Ward,
	Kunihiko Hayashi, AngeloGioacchino Del Regno, Support Opensource,
	Shawn Guo, Sascha Hauer, Fabio Estevam, NXP Linux Team,
	Srinivas Pandruvada, Yang Yingliang, Matthias Brugger,
	Nícolas F. R. A. Prado, Alexandre Mergnat, Chen-Yu Tsai,
	Chen Jiahao, linux-mediatek, Thara Gopinath, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, linux-arm-msm,
	Niklas Söderlund, linux-renesas-soc, linux-rockchip,
	Bartlomiej Zolnierkiewicz, Krzysztof Kozlowski, Alim Akhtar,
	linux-samsung-soc, Orson Zhai, Baolin Wang, Chunyan Zhang,
	Maxime Coquelin, Alexandre Torgue, Florian Fainelli, Rob Herring,
	Minghao Chi, linux-stm32, Thierry Reding, Jonathan Hunter,
	Jernej Skrabec, Johan Hovold, linux-tegra, Mikko Perttunen,
	Eduardo Valentin, Keerthy, linux-omap, Masami Hiramatsu

Hello,

this series converts all platform drivers below drivers/thermal to use
.remove_new(). The motivation is to get rid of an integer return code
that is (mostly) ignored by the platform driver core and error prone on
the driver side.

See commit 5c5a7680e67b ("platform: Provide a remove callback that
returns no value") for an extended explanation and the eventual goal.

There are no interdependencies between the patches. As there are still
quite a few drivers to convert, I'm happy about every patch that makes
it in. So even if there is a merge conflict with one patch until you
apply or a subject prefix is suboptimal, please apply the remainder of
this series anyhow.

Best regards
Uwe

Uwe Kleine-König (31):
  thermal: amlogic: Convert to platform remove callback returning void
  thermal: armada: Convert to platform remove callback returning void
  thermal: bcm2835: Convert to platform remove callback returning void
  thermal: ns: Convert to platform remove callback returning void
  thermal: da9062: Convert to platform remove callback returning void
  thermal: dove: Convert to platform remove callback returning void
  thermal: hisi: Convert to platform remove callback returning void
  thermal: imx8mm: Convert to platform remove callback returning void
  thermal: imx: Convert to platform remove callback returning void
  thermal: int3400: Convert to platform remove callback returning void
  thermal: int3401: Convert to platform remove callback returning void
  thermal: int3402: Convert to platform remove callback returning void
  thermal: int3403: Convert to platform remove callback returning void
  thermal: int3406: Convert to platform remove callback returning void
  thermal: k3_bandgap: Convert to platform remove callback returning void
  thermal: k3_j72xx_bandgap: Convert to platform remove callback returning void
  thermal: kirkwood: Convert to platform remove callback returning void
  thermal: lvts: Convert to platform remove callback returning void
  thermal: tsens: Convert to platform remove callback returning void
  thermal: rcar_gen3: Convert to platform remove callback returning void
  thermal: rcar: Convert to platform remove callback returning void
  thermal: rockchip: Convert to platform remove callback returning void
  thermal: rzg2l: Convert to platform remove callback returning void
  thermal: exynos_tmu: Convert to platform remove callback returning void
  thermal: spear: Convert to platform remove callback returning void
  thermal: sprd: Convert to platform remove callback returning void
  thermal: stm: Convert to platform remove callback returning void
  thermal: soctherm: Convert to platform remove callback returning void
  thermal: tegra-bpmp: Convert to platform remove callback returning void
  thermal: ti-bandgap: Convert to platform remove callback returning void
  thermal: uniphier: Convert to platform remove callback returning void

 drivers/thermal/amlogic_thermal.c                    | 12 +++++-------
 drivers/thermal/armada_thermal.c                     |  6 ++----
 drivers/thermal/broadcom/bcm2835_thermal.c           |  6 ++----
 drivers/thermal/broadcom/ns-thermal.c                |  6 ++----
 drivers/thermal/da9062-thermal.c                     |  5 ++---
 drivers/thermal/dove_thermal.c                       |  6 ++----
 drivers/thermal/hisi_thermal.c                       |  6 ++----
 drivers/thermal/imx8mm_thermal.c                     |  6 ++----
 drivers/thermal/imx_thermal.c                        |  6 ++----
 .../thermal/intel/int340x_thermal/int3400_thermal.c  |  5 ++---
 .../thermal/intel/int340x_thermal/int3401_thermal.c  |  6 ++----
 .../thermal/intel/int340x_thermal/int3402_thermal.c  |  6 ++----
 .../thermal/intel/int340x_thermal/int3403_thermal.c  |  6 ++----
 .../thermal/intel/int340x_thermal/int3406_thermal.c  |  5 ++---
 drivers/thermal/k3_bandgap.c                         |  6 ++----
 drivers/thermal/k3_j72xx_bandgap.c                   |  6 ++----
 drivers/thermal/kirkwood_thermal.c                   |  6 ++----
 drivers/thermal/mediatek/lvts_thermal.c              |  6 ++----
 drivers/thermal/qcom/tsens.c                         |  6 ++----
 drivers/thermal/rcar_gen3_thermal.c                  |  6 ++----
 drivers/thermal/rcar_thermal.c                       |  6 ++----
 drivers/thermal/rockchip_thermal.c                   |  6 ++----
 drivers/thermal/rzg2l_thermal.c                      |  6 ++----
 drivers/thermal/samsung/exynos_tmu.c                 |  6 ++----
 drivers/thermal/spear_thermal.c                      |  6 ++----
 drivers/thermal/sprd_thermal.c                       |  5 ++---
 drivers/thermal/st/stm_thermal.c                     |  6 ++----
 drivers/thermal/tegra/soctherm.c                     |  6 ++----
 drivers/thermal/tegra/tegra-bpmp-thermal.c           |  6 ++----
 drivers/thermal/ti-soc-thermal/ti-bandgap.c          |  6 ++----
 drivers/thermal/uniphier_thermal.c                   |  6 ++----
 31 files changed, 65 insertions(+), 123 deletions(-)

base-commit: 18030226a48de1fbfabf4ae16aaa2695a484254f
-- 
2.40.1


^ permalink raw reply	[flat|nested] 44+ messages in thread

end of thread, other threads:[~2023-10-01 22:53 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-27 19:37 [PATCH 00/31] thermal: Convert to platform remove callback returning void Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 01/31] thermal: amlogic: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 02/31] thermal: armada: " Uwe Kleine-König
2023-10-01 16:09   ` Miquel Raynal
2023-09-27 19:37 ` [PATCH 03/31] thermal: bcm2835: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 04/31] thermal: ns: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 05/31] thermal: da9062: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 06/31] thermal: dove: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 07/31] thermal: hisi: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 08/31] thermal: imx8mm: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 09/31] thermal: imx: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 10/31] thermal: int3400: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 11/31] thermal: int3401: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 12/31] thermal: int3402: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 13/31] thermal: int3403: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 14/31] thermal: int3406: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 15/31] thermal: k3_bandgap: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 16/31] thermal: k3_j72xx_bandgap: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 17/31] thermal: kirkwood: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 18/31] thermal: lvts: " Uwe Kleine-König
2023-09-28 11:13   ` AngeloGioacchino Del Regno
2023-09-27 19:37 ` [PATCH 19/31] thermal: tsens: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 20/31] thermal: rcar_gen3: " Uwe Kleine-König
2023-09-27 19:40   ` Wolfram Sang
2023-09-28  8:21   ` Geert Uytterhoeven
2023-09-28 15:26   ` Niklas Söderlund
2023-09-27 19:37 ` [PATCH 21/31] thermal: rcar: " Uwe Kleine-König
2023-09-27 19:40   ` Wolfram Sang
2023-09-28  8:22   ` Geert Uytterhoeven
2023-09-28 15:26   ` Niklas Söderlund
2023-09-27 19:37 ` [PATCH 22/31] thermal: rockchip: " Uwe Kleine-König
2023-10-01 22:53   ` Heiko Stuebner
2023-09-27 19:37 ` [PATCH 23/31] thermal: rzg2l: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 24/31] thermal: exynos_tmu: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 25/31] thermal: spear: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 26/31] thermal: sprd: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 27/31] thermal: stm: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 28/31] thermal: soctherm: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 29/31] thermal: tegra-bpmp: " Uwe Kleine-König
2023-09-27 19:37 ` [PATCH 30/31] thermal: ti-bandgap: " Uwe Kleine-König
2023-09-28 16:09   ` Dhruva Gole
2023-09-27 19:37 ` [PATCH 31/31] thermal: uniphier: " Uwe Kleine-König
2023-09-27 19:45 ` [PATCH 00/31] thermal: " Rafael J. Wysocki
2023-09-28  7:05   ` Daniel Lezcano

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).