public inbox for linux-pm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] drivers: Integrate log message printing into devm_thermal_*_register()
@ 2025-09-05  7:23 Xichao Zhao
  2025-09-05  7:23 ` [PATCH 01/12] thermal: of: Add error handling in devm_thermal_*_register() Xichao Zhao
                   ` (11 more replies)
  0 siblings, 12 replies; 20+ messages in thread
From: Xichao Zhao @ 2025-09-05  7:23 UTC (permalink / raw)
  To: Jean Delvare, Guenter Roeck, Jonathan Cameron, David Lechner,
	Nuno Sá, Andy Shevchenko, Chen-Yu Tsai, Jernej Skrabec,
	Samuel Holland, Liam Girdwood, Mark Brown, Rafael J. Wysocki,
	Daniel Lezcano, Zhang Rui, Lukasz Luba, Guillaume La Roque,
	Miquel Raynal, Florian Fainelli,
	Broadcom internal kernel review list, Ray Jui, Scott Branden,
	Markus Mayer, Shawn Guo, Sascha Hauer, Pengutronix Kernel Team,
	Fabio Estevam, zhanghongchen, Yinbo Zhu, Amit Kucheria,
	Thara Gopinath, Niklas Söderlund, Geert Uytterhoeven,
	Magnus Damm, Heiko Stuebner, Bartlomiej Zolnierkiewicz,
	Krzysztof Kozlowski, Alim Akhtar, Orson Zhai, Baolin Wang,
	Chunyan Zhang, Maxime Coquelin, Alexandre Torgue, Thierry Reding,
	Jonathan Hunter, Talel Shenhar, Eduardo Valentin, Keerthy,
	Kunihiko Hayashi, Masami Hiramatsu, open list:HARDWARE MONITORING,
	open list, open list:IIO SUBSYSTEM AND DRIVERS,
	moderated list:ARM/Allwinner sunXi SoC support,
	open list:ARM/Allwinner sunXi SoC support, open list:THERMAL,
	open list:THERMAL DRIVER FOR AMLOGIC SOCS,
	moderated list:BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE,
	open list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE,
	open list:QUALCOMM TSENS THERMAL DRIVER,
	open list:RENESAS R-CAR THERMAL DRIVERS,
	open list:ARM/Rockchip SoC support,
	open list:SAMSUNG THERMAL DRIVER,
	moderated list:ARM/STM32 ARCHITECTURE,
	open list:TEGRA ARCHITECTURE SUPPORT,
	open list:TI BANDGAP AND THERMAL DRIVER
  Cc: Xichao Zhao

Add dev_err_probe() in devm_thermal_of_zone_register() to unify
error reporting. Remove redundant error log prints in various driver codes.

Xichao Zhao (12):
  thermal: of: Add error handling in devm_thermal_*_register()
  hwmon: Remove redundant error log prints
  iio: adc: Remove redundant error log prints
  regulator: max8973: Remove redundant error log prints
  thermal: Remove redundant error log prints
  thermal: broadcom: Remove redundant error log prints
  thermal: qcom: Remove redundant error log prints
  thermal: renesas: Remove redundant error log prints
  thermal: samsung: Remove redundant error log prints
  thermal: st: Remove redundant error log prints
  thermal: tegra: Remove redundant error log prints
  thermal: ti-soc-thermal: Remove redundant error log  prints

 drivers/hwmon/hwmon.c                              |  3 +--
 drivers/iio/adc/sun4i-gpadc-iio.c                  |  6 +-----
 drivers/regulator/max8973-regulator.c              |  8 ++------
 drivers/thermal/airoha_thermal.c                   |  4 +---
 drivers/thermal/amlogic_thermal.c                  |  7 ++-----
 drivers/thermal/armada_thermal.c                   |  2 --
 drivers/thermal/broadcom/bcm2711_thermal.c         |  7 ++-----
 drivers/thermal/broadcom/bcm2835_thermal.c         |  2 +-
 drivers/thermal/broadcom/brcmstb_thermal.c         |  3 +--
 drivers/thermal/db8500_thermal.c                   |  5 ++---
 drivers/thermal/hisi_thermal.c                     |  7 +------
 drivers/thermal/imx8mm_thermal.c                   |  3 ---
 drivers/thermal/imx_sc_thermal.c                   |  2 +-
 drivers/thermal/k3_bandgap.c                       |  1 -
 drivers/thermal/k3_j72xx_bandgap.c                 |  1 -
 drivers/thermal/loongson2_thermal.c                |  2 +-
 drivers/thermal/qcom/qcom-spmi-adc-tm5.c           |  7 +------
 drivers/thermal/qcom/qcom-spmi-temp-alarm.c        |  3 +--
 drivers/thermal/renesas/rcar_gen3_thermal.c        |  1 -
 drivers/thermal/renesas/rcar_thermal.c             |  3 ++-
 drivers/thermal/renesas/rzg2l_thermal.c            |  1 -
 drivers/thermal/rockchip_thermal.c                 |  8 ++------
 drivers/thermal/samsung/exynos_tmu.c               |  2 +-
 drivers/thermal/sprd_thermal.c                     |  2 --
 drivers/thermal/st/st_thermal.c                    |  1 -
 drivers/thermal/st/stm_thermal.c                   |  8 ++------
 drivers/thermal/tegra/soctherm.c                   |  2 --
 drivers/thermal/tegra/tegra30-tsensor.c            |  3 +--
 drivers/thermal/thermal-generic-adc.c              | 10 ++--------
 drivers/thermal/thermal_mmio.c                     |  6 +-----
 drivers/thermal/thermal_of.c                       |  6 +++++-
 drivers/thermal/ti-soc-thermal/ti-thermal-common.c |  4 +---
 drivers/thermal/uniphier_thermal.c                 |  4 +---
 33 files changed, 36 insertions(+), 98 deletions(-)

-- 
2.34.1


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

end of thread, other threads:[~2025-09-05 14:31 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-05  7:23 [PATCH 00/12] drivers: Integrate log message printing into devm_thermal_*_register() Xichao Zhao
2025-09-05  7:23 ` [PATCH 01/12] thermal: of: Add error handling in devm_thermal_*_register() Xichao Zhao
2025-09-05  7:56   ` Niklas Söderlund
2025-09-05  9:33   ` Andy Shevchenko
2025-09-05  9:35     ` Andy Shevchenko
2025-09-05 14:28   ` Guenter Roeck
2025-09-05  7:23 ` [PATCH 02/12] hwmon: Remove redundant error log prints Xichao Zhao
2025-09-05 14:31   ` Guenter Roeck
2025-09-05  7:23 ` [PATCH 03/12] iio: adc: " Xichao Zhao
2025-09-05  7:37   ` Chen-Yu Tsai
2025-09-05  7:23 ` [PATCH 04/12] regulator: max8973: " Xichao Zhao
2025-09-05 10:42   ` Mark Brown
2025-09-05  7:23 ` [PATCH 05/12] thermal: " Xichao Zhao
2025-09-05  7:23 ` [PATCH 06/12] thermal: broadcom: " Xichao Zhao
2025-09-05  7:23 ` [PATCH 07/12] thermal: qcom: " Xichao Zhao
2025-09-05  7:24 ` [PATCH 08/12] thermal: renesas: " Xichao Zhao
2025-09-05  7:24 ` [PATCH 09/12] thermal: samsung: " Xichao Zhao
2025-09-05  7:24 ` [PATCH 10/12] thermal: st: " Xichao Zhao
2025-09-05  7:24 ` [PATCH 11/12] thermal: tegra: " Xichao Zhao
2025-09-05  7:24 ` [PATCH 12/12] thermal: ti-soc-thermal: " Xichao Zhao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox