* [PATCH v1] fixup! Bluetooth: btusb: Use pm_ptr instead of #ifdef CONFIG_PM
@ 2026-01-20 18:17 Luiz Augusto von Dentz
2026-01-20 19:02 ` [v1] " bluez.test.bot
2026-01-20 21:41 ` [PATCH v1] " Bastien Nocera
0 siblings, 2 replies; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2026-01-20 18:17 UTC (permalink / raw)
To: linux-bluetooth
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
---
drivers/bluetooth/btusb.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 759def260ed0..f9fba78f0a4a 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -4468,7 +4468,8 @@ static void btusb_disconnect(struct usb_interface *intf)
kfree(data);
}
-static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
+static int __maybe_unused btusb_suspend(struct usb_interface *intf,
+ pm_message_t message)
{
struct btusb_data *data = usb_get_intfdata(intf);
@@ -4557,7 +4558,7 @@ static void play_deferred(struct btusb_data *data)
}
}
-static int btusb_resume(struct usb_interface *intf)
+static int __maybe_unused btusb_resume(struct usb_interface *intf)
{
struct btusb_data *data = usb_get_intfdata(intf);
struct hci_dev *hdev = data->hdev;
--
2.52.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* RE: [v1] fixup! Bluetooth: btusb: Use pm_ptr instead of #ifdef CONFIG_PM
2026-01-20 18:17 [PATCH v1] fixup! Bluetooth: btusb: Use pm_ptr instead of #ifdef CONFIG_PM Luiz Augusto von Dentz
@ 2026-01-20 19:02 ` bluez.test.bot
2026-01-20 21:41 ` [PATCH v1] " Bastien Nocera
1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2026-01-20 19:02 UTC (permalink / raw)
To: linux-bluetooth, luiz.dentz
[-- Attachment #1: Type: text/plain, Size: 2753 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=1044807
---Test result---
Test Summary:
CheckPatch PENDING 0.39 seconds
GitLint PENDING 0.27 seconds
SubjectPrefix PASS 0.12 seconds
BuildKernel PASS 25.81 seconds
CheckAllWarning PASS 28.04 seconds
CheckSparse PASS 31.14 seconds
BuildKernel32 PASS 25.34 seconds
TestRunnerSetup PASS 550.69 seconds
TestRunner_l2cap-tester PASS 27.64 seconds
TestRunner_iso-tester PASS 85.89 seconds
TestRunner_bnep-tester PASS 6.34 seconds
TestRunner_mgmt-tester FAIL 128.94 seconds
TestRunner_rfcomm-tester PASS 9.32 seconds
TestRunner_sco-tester FAIL 14.51 seconds
TestRunner_ioctl-tester PASS 10.17 seconds
TestRunner_mesh-tester FAIL 11.48 seconds
TestRunner_smp-tester PASS 8.55 seconds
TestRunner_userchan-tester PASS 6.63 seconds
IncrementalBuild PENDING 0.76 seconds
Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:
##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:
##############################
Test: TestRunner_mgmt-tester - FAIL
Desc: Run mgmt-tester with test-runner
Output:
Total: 494, Passed: 487 (98.6%), Failed: 3, Not Run: 4
Failed Test Cases
Read Exp Feature - Success Failed 0.104 seconds
LL Privacy - Set Flags 1 (Add to RL) Failed 0.155 seconds
LL Privacy - Set Device Flag 1 (Device Privacy) Failed 0.139 seconds
##############################
Test: TestRunner_sco-tester - FAIL
Desc: Run sco-tester with test-runner
Output:
WARNING: possible circular locking dependency detected
BUG: sleeping function called from invalid context at net/core/sock.c:3782
Total: 30, Passed: 30 (100.0%), Failed: 0, Not Run: 0
##############################
Test: TestRunner_mesh-tester - FAIL
Desc: Run mesh-tester with test-runner
Output:
Total: 10, Passed: 8 (80.0%), Failed: 2, Not Run: 0
Failed Test Cases
Mesh - Send cancel - 1 Timed out 1.866 seconds
Mesh - Send cancel - 2 Timed out 1.996 seconds
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1] fixup! Bluetooth: btusb: Use pm_ptr instead of #ifdef CONFIG_PM
2026-01-20 18:17 [PATCH v1] fixup! Bluetooth: btusb: Use pm_ptr instead of #ifdef CONFIG_PM Luiz Augusto von Dentz
2026-01-20 19:02 ` [v1] " bluez.test.bot
@ 2026-01-20 21:41 ` Bastien Nocera
1 sibling, 0 replies; 3+ messages in thread
From: Bastien Nocera @ 2026-01-20 21:41 UTC (permalink / raw)
To: Luiz Augusto von Dentz, linux-bluetooth
NAK, see explanation at:
https://patchwork.kernel.org/project/bluetooth/patch/20260116125803.598552-3-hadess@hadess.net/#26748187
On Tue, 2026-01-20 at 13:17 -0500, Luiz Augusto von Dentz wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>
> ---
> drivers/bluetooth/btusb.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
> index 759def260ed0..f9fba78f0a4a 100644
> --- a/drivers/bluetooth/btusb.c
> +++ b/drivers/bluetooth/btusb.c
> @@ -4468,7 +4468,8 @@ static void btusb_disconnect(struct
> usb_interface *intf)
> kfree(data);
> }
>
> -static int btusb_suspend(struct usb_interface *intf, pm_message_t
> message)
> +static int __maybe_unused btusb_suspend(struct usb_interface *intf,
> + pm_message_t message)
> {
> struct btusb_data *data = usb_get_intfdata(intf);
>
> @@ -4557,7 +4558,7 @@ static void play_deferred(struct btusb_data
> *data)
> }
> }
>
> -static int btusb_resume(struct usb_interface *intf)
> +static int __maybe_unused btusb_resume(struct usb_interface *intf)
> {
> struct btusb_data *data = usb_get_intfdata(intf);
> struct hci_dev *hdev = data->hdev;
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-01-20 22:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-20 18:17 [PATCH v1] fixup! Bluetooth: btusb: Use pm_ptr instead of #ifdef CONFIG_PM Luiz Augusto von Dentz
2026-01-20 19:02 ` [v1] " bluez.test.bot
2026-01-20 21:41 ` [PATCH v1] " Bastien Nocera
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox