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 soc drivers that follow these devm_request_*_irq() functions, as the core now provides more detailed diagnostic information on failure. Pan Chuang (7): soc: fsl: dpio: Remove redundant dev_err() soc: ixp4xx: Remove redundant dev_err() soc: mediatek: mtk-svs: Remove redundant dev_err_probe() soc: qcom: Remove redundant dev_err() soc/tegra: cbb: Remove redundant dev_err() soc: ti: wkup_m3_ipc: Remove redundant dev_err() soc: xilinx: Remove redundant dev_err() drivers/soc/fsl/dpio/dpio-driver.c | 6 +----- drivers/soc/ixp4xx/ixp4xx-qmgr.c | 10 ++-------- drivers/soc/mediatek/mtk-svs.c | 4 +--- drivers/soc/qcom/qcom_aoss.c | 4 +--- drivers/soc/qcom/smp2p.c | 4 +--- drivers/soc/qcom/smsm.c | 4 +--- drivers/soc/tegra/cbb/tegra194-cbb.c | 9 ++------- drivers/soc/ti/wkup_m3_ipc.c | 4 +--- drivers/soc/xilinx/zynqmp_power.c | 5 +---- 9 files changed, 11 insertions(+), 39 deletions(-) -- 2.34.1
