* [PATCH] Bluetooth: Remove redundant dev_err()
@ 2026-07-10 11:06 Pan Chuang
2026-07-10 13:26 ` bluez.test.bot
0 siblings, 1 reply; 2+ messages in thread
From: Pan Chuang @ 2026-07-10 11:06 UTC (permalink / raw)
To: Marcel Holtmann, Luiz Augusto von Dentz,
open list:BLUETOOTH DRIVERS, open list
Cc: Pan Chuang
Since commit 55b48e23f5c4 ("genirq/devres: Add error handling in
devm_request_*_irq()"), devm_request_irq() and devm_request_threaded_irq()
automatically log detailed error messages on failure. Remove the
now-redundant driver-specific dev_err() calls.
Signed-off-by: Pan Chuang <panchuang@vivo.com>
---
drivers/bluetooth/btmrvl_sdio.c | 5 -----
drivers/bluetooth/hci_nokia.c | 4 +---
2 files changed, 1 insertion(+), 8 deletions(-)
diff --git a/drivers/bluetooth/btmrvl_sdio.c b/drivers/bluetooth/btmrvl_sdio.c
index 93932a0d8625..a84275b8833a 100644
--- a/drivers/bluetooth/btmrvl_sdio.c
+++ b/drivers/bluetooth/btmrvl_sdio.c
@@ -93,11 +93,6 @@ static int btmrvl_sdio_probe_of(struct device *dev,
ret = devm_request_irq(dev, cfg->irq_bt,
btmrvl_wake_irq_bt,
IRQF_NO_AUTOEN, "bt_wake", card);
- if (ret) {
- dev_err(dev,
- "Failed to request irq_bt %d (%d)\n",
- cfg->irq_bt, ret);
- }
/* Configure wakeup (enabled by default) */
ret = devm_device_init_wakeup(dev);
diff --git a/drivers/bluetooth/hci_nokia.c b/drivers/bluetooth/hci_nokia.c
index 1e65b541f8ad..2dc3d97bcca1 100644
--- a/drivers/bluetooth/hci_nokia.c
+++ b/drivers/bluetooth/hci_nokia.c
@@ -709,10 +709,8 @@ static int nokia_bluetooth_serdev_probe(struct serdev_device *serdev)
wakeup_handler,
IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
"wakeup", btdev);
- if (err) {
- dev_err(dev, "could request wakeup irq: %d", err);
+ if (err)
return err;
- }
btdev->wakeup_bt = devm_gpiod_get(dev, "bluetooth-wakeup",
GPIOD_OUT_LOW);
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* RE: Bluetooth: Remove redundant dev_err()
2026-07-10 11:06 [PATCH] Bluetooth: Remove redundant dev_err() Pan Chuang
@ 2026-07-10 13:26 ` bluez.test.bot
0 siblings, 0 replies; 2+ messages in thread
From: bluez.test.bot @ 2026-07-10 13:26 UTC (permalink / raw)
To: linux-bluetooth, panchuang
[-- Attachment #1: Type: text/plain, Size: 1181 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=1125351
---Test result---
Test Summary:
CheckPatch PASS 0.94 seconds
VerifyFixes PASS 0.14 seconds
VerifySignedoff PASS 0.14 seconds
GitLint PASS 0.34 seconds
SubjectPrefix PASS 0.13 seconds
BuildKernel PASS 26.56 seconds
CheckAllWarning PASS 29.84 seconds
CheckSparse PASS 27.89 seconds
BuildKernel32 PASS 25.87 seconds
CheckKernelLLVM SKIP 0.00 seconds
TestRunnerSetup PASS 493.05 seconds
IncrementalBuild PASS 25.19 seconds
Details
##############################
Test: CheckKernelLLVM - SKIP
Desc: Build kernel with LLVM + context analysis
Output:
Clang not found
https://github.com/bluez/bluetooth-next/pull/422
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-07-10 13:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-10 11:06 [PATCH] Bluetooth: Remove redundant dev_err() Pan Chuang
2026-07-10 13:26 ` bluez.test.bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox