All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] crypto: Remove redundant error messages on IRQ request failure
@ 2026-07-17  8:00 ` Pan Chuang
  0 siblings, 0 replies; 21+ messages in thread
From: Pan Chuang @ 2026-07-17  8:00 UTC (permalink / raw)
  To: Corentin Labbe, Herbert Xu, David S. Miller, Chen-Yu Tsai,
	Jernej Skrabec, Samuel Holland, Neal Liu, Joel Stanley,
	Andrew Jeffery, Nicolas Ferre, Alexandre Belloni, Claudiu Beznea,
	Horia Geantă, Pankaj Gupta, Gaurav Jain, Gilad Ben-Yossef,
	Hans Ulli Kroll, Linus Walleij, Antoine Tenart, Prabhjot Khurana,
	Declan Murphy, Srujana Challa, Bharat Bhushan, Frank Li,
	Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam,
	Heiko Stuebner, Maxime Coquelin, Alexandre Torgue, Ovidiu Panait,
	Arnd Bergmann, Eric Biggers, Pan Chuang, Myeonghun Pak, Ijae Kim,
	Krzysztof Kozlowski, Kees Cook, Thorsten Blum, Colin Ian King,
	Sakari Ailus, open list:ALLWINNER CRYPTO DRIVERS,
	moderated list:ARM/Allwinner sunXi SoC support,
	open list:ARM/Allwinner sunXi SoC support, open list,
	open list:ARM/Amlogic Meson SoC Crypto Drivers,
	moderated list:ASPEED CRYPTO DRIVER,
	open list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE,
	open list:ARM/Rockchip SoC support,
	moderated list:ARM/STM32 ARCHITECTURE

Commit 55b48e23f5c4 ("genirq/devres: Add error handling in
devm_request_*_irq()") added automatic error logging to
devm_request_threaded_irq() and devm_request_any_context_irq()
via the new devm_request_result() helper, which prints device
name, IRQ number, handler functions, and error code on failure.

Since devm_request_irq() is a static inline wrapper around
devm_request_threaded_irq(), it also benefits from this
automatic logging.

Remove the now-redundant dev_err() and dev_err_probe() calls
in crypto drivers that follow these devm_request_*_irq()
functions, as the core now provides more detailed diagnostic
information on failure.

Pan Chuang (12):
  crypto: allwinner - Remove redundant dev_err()
  crypto: amlogic - Remove redundant dev_err()
  crypto: aspeed - Remove redundant dev_err()
  crypto: Remove redundant dev_err()/dev_err_probe()
  crypto: caam - Remove redundant dev_err()
  crypto: ccree - Remove redundant dev_err()
  crypto: sl3516 - Remove redundant dev_err()
  crypto: safexcel - Remove redundant dev_err()
  crypto: keembay - Remove redundant dev_err()
  crypto: octeontx2 - Remove redundant dev_err()
  crypto: rockchip - Remove redundant dev_err()
  crypto: stm32 - Remove redundant dev_err()

 drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c   | 4 +---
 drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c   | 4 +---
 drivers/crypto/amlogic/amlogic-gxl-core.c           | 4 +---
 drivers/crypto/aspeed/aspeed-acry.c                 | 4 +---
 drivers/crypto/aspeed/aspeed-hace.c                 | 4 +---
 drivers/crypto/atmel-aes.c                          | 4 +---
 drivers/crypto/atmel-sha.c                          | 4 +---
 drivers/crypto/atmel-tdes.c                         | 4 +---
 drivers/crypto/caam/jr.c                            | 2 --
 drivers/crypto/ccree/cc_driver.c                    | 4 +---
 drivers/crypto/gemini/sl3516-ce-core.c              | 4 +---
 drivers/crypto/img-hash.c                           | 4 +---
 drivers/crypto/inside-secure/safexcel.c             | 4 +---
 drivers/crypto/intel/keembay/keembay-ocs-aes-core.c | 4 +---
 drivers/crypto/intel/keembay/keembay-ocs-ecc.c      | 4 +---
 drivers/crypto/intel/keembay/keembay-ocs-hcu-core.c | 4 +---
 drivers/crypto/marvell/octeontx2/otx2_cptpf_main.c  | 5 +----
 drivers/crypto/mxs-dcp.c                            | 8 ++------
 drivers/crypto/omap-aes.c                           | 4 +---
 drivers/crypto/omap-des.c                           | 4 +---
 drivers/crypto/omap-sham.c                          | 5 +----
 drivers/crypto/rockchip/rk3288_crypto.c             | 4 +---
 drivers/crypto/sahara.c                             | 3 +--
 drivers/crypto/stm32/stm32-cryp.c                   | 4 +---
 drivers/crypto/stm32/stm32-hash.c                   | 4 +---
 25 files changed, 25 insertions(+), 78 deletions(-)

-- 
2.34.1


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

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

end of thread, other threads:[~2026-07-17  8:59 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-17  8:00 [PATCH 00/12] crypto: Remove redundant error messages on IRQ request failure Pan Chuang
2026-07-17  8:00 ` Pan Chuang
2026-07-17  8:00 ` Pan Chuang
2026-07-17  8:00 ` [PATCH 01/12] crypto: allwinner - Remove redundant dev_err() Pan Chuang
2026-07-17  8:13   ` sashiko-bot
2026-07-17  8:00 ` [PATCH 02/12] crypto: amlogic " Pan Chuang
2026-07-17  8:00   ` Pan Chuang
2026-07-17  8:12   ` sashiko-bot
2026-07-17  8:00 ` [PATCH 03/12] crypto: aspeed " Pan Chuang
2026-07-17  8:00 ` [PATCH 04/12] crypto: Remove redundant dev_err()/dev_err_probe() Pan Chuang
2026-07-17  8:16   ` sashiko-bot
2026-07-17  8:00 ` [PATCH 05/12] crypto: caam - Remove redundant dev_err() Pan Chuang
2026-07-17  8:00 ` [PATCH 06/12] crypto: ccree " Pan Chuang
2026-07-17  8:00 ` [PATCH 07/12] crypto: sl3516 " Pan Chuang
2026-07-17  8:00 ` [PATCH 08/12] crypto: safexcel " Pan Chuang
2026-07-17  8:00 ` [PATCH 09/12] crypto: keembay " Pan Chuang
2026-07-17  8:00 ` [PATCH 10/12] crypto: octeontx2 " Pan Chuang
2026-07-17  8:00 ` [PATCH 11/12] crypto: rockchip " Pan Chuang
2026-07-17  8:00   ` Pan Chuang
2026-07-17  8:00 ` [PATCH 12/12] crypto: stm32 " Pan Chuang
2026-07-17  8:59   ` Maxime MERE

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.