From: Pan Chuang <panchuang@vivo.com>
To: "Hans de Goede" <hansg@kernel.org>,
"Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
"Bryan O'Donoghue" <bryan.odonoghue@linaro.org>,
"Pengyu Luo" <mitltlatltl@gmail.com>,
"Sebastian Reichel" <sre@kernel.org>,
"Benson Leung" <bleung@chromium.org>,
"Tzung-Bi Shih" <tzungbi@kernel.org>,
"Guenter Roeck" <groeck@chromium.org>,
"Marek Behún" <kabel@kernel.org>,
"Vadim Pasternak" <vadimp@nvidia.com>,
"Florian Fainelli" <florian.fainelli@broadcom.com>,
"Broadcom internal kernel review list"
<bcm-kernel-feedback-list@broadcom.com>,
"Corentin Chary" <corentin.chary@gmail.com>,
"Luke D. Jones" <luke@ljones.dev>,
"Denis Benato" <denis.benato@linux.dev>,
"Zha Qipeng" <qipeng.zha@intel.com>,
"Bjorn Helgaas" <bhelgaas@google.com>,
"Danilo Krummrich" <dakr@kernel.org>,
"Takashi Sakamoto" <o-takashi@sakamocchi.jp>,
"Kees Cook" <kees@kernel.org>,
"Uwe Kleine-König (The Capable Hub)"
<u.kleine-koenig@baylibre.com>, "Pan Chuang" <panchuang@vivo.com>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Jai Luthra" <jai.luthra@ideasonboard.com>,
"Stefan Wahren" <wahrenst@gmx.net>,
"Phil Elwell" <phil@raspberrypi.com>,
"Bartosz Golaszewski" <brgl@kernel.org>,
"Thomas Gleixner" <tglx@kernel.org>,
"Sebastian Andrzej Siewior" <bigeasy@linutronix.de>,
platform-driver-x86@vger.kernel.org (open list:ARM64 PLATFORM
DRIVERS), linux-kernel@vger.kernel.org (open list),
chrome-platform@lists.linux.dev (open list:CHROME HARDWARE
PLATFORM SUPPORT),
linux-rpi-kernel@lists.infradead.org (moderated list:BROADCOM
BCM2711/BCM2835 ARM ARCHITECTURE),
linux-arm-kernel@lists.infradead.org (moderated list:BROADCOM
BCM2711/BCM2835 ARM ARCHITECTURE)
Subject: [PATCH 0/7] platform: Remove redundant error messages on IRQ request failure
Date: Fri, 17 Jul 2026 19:20:38 +0800 [thread overview]
Message-ID: <20260717112103.213017-1-panchuang@vivo.com> (raw)
devm_request_threaded_irq() and devm_request_any_context_irq()
automatically log detailed error messages on failure via
the devm_request_result() helper, which prints device
name, IRQ number, handler functions, and error code.
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 platform drivers that follow these devm_request_*_irq()
functions, as the core now provides more detailed diagnostic
information on failure.
Pan Chuang (7):
platform: arm64: Remove redundant dev_err_probe()
platform/chrome: Remove redundant dev_err()
platform: cznic: turris-omnia-mcu: Remove redundant dev_err_probe()
platform: goldfish: pipe: Remove redundant dev_err()
platform/mellanox: Remove redundant dev_err()
platform/raspberrypi: Remove redundant dev_err()
platform/x86: Remove redundant dev_err()/dev_err_probe()
drivers/platform/arm64/acer-aspire1-ec.c | 2 +-
drivers/platform/arm64/huawei-gaokun-ec.c | 2 +-
drivers/platform/arm64/lenovo-thinkpad-t14s.c | 2 +-
drivers/platform/arm64/lenovo-yoga-c630.c | 2 +-
drivers/platform/chrome/cros_ec.c | 5 +----
drivers/platform/cznic/turris-omnia-mcu-gpio.c | 2 +-
drivers/platform/goldfish/goldfish_pipe.c | 4 +---
drivers/platform/mellanox/mlxbf-tmfifo.c | 1 -
drivers/platform/mellanox/mlxreg-hotplug.c | 4 +---
drivers/platform/raspberrypi/vchiq-interface/vchiq_arm.c | 4 +---
drivers/platform/x86/asus-tf103c-dock.c | 2 +-
drivers/platform/x86/intel/bxtwc_tmu.c | 5 +----
drivers/platform/x86/intel/bytcrc_pwrsrc.c | 2 +-
drivers/platform/x86/intel/crystal_cove_charger.c | 2 +-
drivers/platform/x86/intel/int0002_vgpio.c | 4 +---
drivers/platform/x86/intel/punit_ipc.c | 4 +---
16 files changed, 15 insertions(+), 32 deletions(-)
--
2.34.1
next reply other threads:[~2026-07-17 11:22 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-17 11:20 Pan Chuang [this message]
2026-07-17 11:20 ` [PATCH 1/7] platform: arm64: Remove redundant dev_err_probe() Pan Chuang
2026-07-17 23:59 ` Sebastian Reichel
2026-07-17 11:20 ` [PATCH 2/7] platform/chrome: Remove redundant dev_err() Pan Chuang
2026-07-17 11:20 ` [PATCH 3/7] platform: cznic: turris-omnia-mcu: Remove redundant dev_err_probe() Pan Chuang
2026-07-17 11:20 ` [PATCH 4/7] platform: goldfish: pipe: Remove redundant dev_err() Pan Chuang
2026-07-17 11:20 ` [PATCH 5/7] platform/mellanox: " Pan Chuang
2026-07-17 11:20 ` [PATCH 6/7] platform/raspberrypi: " Pan Chuang
2026-07-17 17:58 ` Stefan Wahren
2026-07-17 11:20 ` [PATCH 7/7] platform/x86: Remove redundant dev_err()/dev_err_probe() Pan Chuang
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=20260717112103.213017-1-panchuang@vivo.com \
--to=panchuang@vivo.com \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=bhelgaas@google.com \
--cc=bigeasy@linutronix.de \
--cc=bleung@chromium.org \
--cc=brgl@kernel.org \
--cc=bryan.odonoghue@linaro.org \
--cc=chrome-platform@lists.linux.dev \
--cc=corentin.chary@gmail.com \
--cc=dakr@kernel.org \
--cc=denis.benato@linux.dev \
--cc=florian.fainelli@broadcom.com \
--cc=gregkh@linuxfoundation.org \
--cc=groeck@chromium.org \
--cc=hansg@kernel.org \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=jai.luthra@ideasonboard.com \
--cc=kabel@kernel.org \
--cc=kees@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rpi-kernel@lists.infradead.org \
--cc=luke@ljones.dev \
--cc=mitltlatltl@gmail.com \
--cc=o-takashi@sakamocchi.jp \
--cc=phil@raspberrypi.com \
--cc=platform-driver-x86@vger.kernel.org \
--cc=qipeng.zha@intel.com \
--cc=sre@kernel.org \
--cc=tglx@kernel.org \
--cc=tzungbi@kernel.org \
--cc=u.kleine-koenig@baylibre.com \
--cc=vadimp@nvidia.com \
--cc=wahrenst@gmx.net \
/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