* RE: Bluetooth: btusb: Add support for Mercusys MA530 Bluetooth adapter
2025-08-30 23:35 [PATCH] " 3
@ 2025-08-30 23:37 ` bluez.test.bot
0 siblings, 0 replies; 6+ messages in thread
From: bluez.test.bot @ 2025-08-30 23:37 UTC (permalink / raw)
To: linux-bluetooth, elespink
[-- Attachment #1: Type: text/plain, Size: 382 bytes --]
This is an automated email and please do not reply to this email.
Dear Submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.
----- Output -----
Please resolve the issue and submit the patches again.
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: Bluetooth: btusb: Add support for Mercusys MA530 Bluetooth adapter
2025-08-30 23:57 [PATCH] " 3
@ 2025-08-31 1:10 ` bluez.test.bot
0 siblings, 0 replies; 6+ messages in thread
From: bluez.test.bot @ 2025-08-31 1:10 UTC (permalink / raw)
To: linux-bluetooth, elespink
[-- Attachment #1: Type: text/plain, Size: 382 bytes --]
This is an automated email and please do not reply to this email.
Dear Submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.
----- Output -----
Please resolve the issue and submit the patches again.
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] Bluetooth: btusb: Add support for Mercusys MA530 Bluetooth adapter
@ 2025-08-31 10:50 3
2025-08-31 10:57 ` Paul Menzel
2025-08-31 11:13 ` bluez.test.bot
0 siblings, 2 replies; 6+ messages in thread
From: 3 @ 2025-08-31 10:50 UTC (permalink / raw)
To: linux-bluetooth; +Cc: marcel, luiz.dentz, linux-kernel
From becb0b090d9783afddf7d43d739ee69b82fbb32a Mon Sep 17 00:00:00 2001
From: lespink <lespinks9@gmail.com>
Date: Sun, 31 Aug 2025 12:35:47 +0200
Subject: [PATCH] Bluetooth: btusb: Add support for Mercusys MA530 Bluetooth
adapter
Add support for a Realtek-based Mercusys MA530 Bluetooth 5.3 USB dongle
which works with USB ID 2c4e:0115. This device was not recognized by the
kernel with the original device list and thus was non-functional.
Signed-off-by: lespink <lespinks9@gmail.com>
---
drivers/bluetooth/btusb.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 8085fabadde8..84ebeb317dda 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -593,6 +593,10 @@ static const struct usb_device_id quirks_table[] = {
{ USB_DEVICE(0x0489, 0xe130), .driver_info = BTUSB_REALTEK |
BTUSB_WIDEBAND_SPEECH },
+ /* Mercusys MA530 Adapter */
+ { USB_DEVICE(0x2c4e, 0x0115), .driver_info = BTUSB_REALTEK |
+ BTUSB_WIDEBAND_SPEECH },
+
/* Realtek Bluetooth devices */
{ USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
.driver_info = BTUSB_REALTEK },
--
2.51.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] Bluetooth: btusb: Add support for Mercusys MA530 Bluetooth adapter
2025-08-31 10:50 [PATCH] Bluetooth: btusb: Add support for Mercusys MA530 Bluetooth adapter 3
@ 2025-08-31 10:57 ` Paul Menzel
2025-08-31 11:13 ` bluez.test.bot
1 sibling, 0 replies; 6+ messages in thread
From: Paul Menzel @ 2025-08-31 10:57 UTC (permalink / raw)
To: elespink; +Cc: linux-bluetooth, marcel, luiz.dentz, linux-kernel
Dear lespink,
Thank you for your patch.
Am 31.08.25 um 12:50 schrieb 3:
> From becb0b090d9783afddf7d43d739ee69b82fbb32a Mon Sep 17 00:00:00 2001
> From: lespink <lespinks9@gmail.com>
> Date: Sun, 31 Aug 2025 12:35:47 +0200
> Subject: [PATCH] Bluetooth: btusb: Add support for Mercusys MA530 Bluetooth adapter
Please use `git send-email` or `b4` to send the patch, as currently it’s
not formatted correctly.
> Add support for a Realtek-based Mercusys MA530 Bluetooth 5.3 USB dongle
> which works with USB ID 2c4e:0115. This device was not recognized by the
… having the id 2c4e:0115.
(Maybe add that id to the summary/title too.)
> kernel with the original device list and thus was non-functional.
According to `git log drivers/bluetooth` it’s common to paste the
information from `/sys/kernel/debug/usb/devices` to the commit message.
> Signed-off-by: lespink <lespinks9@gmail.com>
> ---
> drivers/bluetooth/btusb.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
> index 8085fabadde8..84ebeb317dda 100644
> --- a/drivers/bluetooth/btusb.c
> +++ b/drivers/bluetooth/btusb.c
> @@ -593,6 +593,10 @@ static const struct usb_device_id quirks_table[] = {
> { USB_DEVICE(0x0489, 0xe130), .driver_info = BTUSB_REALTEK |
> BTUSB_WIDEBAND_SPEECH },
>
> + /* Mercusys MA530 Adapter */
> + { USB_DEVICE(0x2c4e, 0x0115), .driver_info = BTUSB_REALTEK |
> + BTUSB_WIDEBAND_SPEECH },
> +
> /* Realtek Bluetooth devices */
> { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
> .driver_info = BTUSB_REALTEK },
> --
> 2.51.0
The diff looks fine.
Kind regards,
Paul
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: Bluetooth: btusb: Add support for Mercusys MA530 Bluetooth adapter
2025-08-31 10:50 [PATCH] Bluetooth: btusb: Add support for Mercusys MA530 Bluetooth adapter 3
2025-08-31 10:57 ` Paul Menzel
@ 2025-08-31 11:13 ` bluez.test.bot
1 sibling, 0 replies; 6+ messages in thread
From: bluez.test.bot @ 2025-08-31 11:13 UTC (permalink / raw)
To: linux-bluetooth, elespink
[-- Attachment #1: Type: text/plain, Size: 382 bytes --]
This is an automated email and please do not reply to this email.
Dear Submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.
----- Output -----
Please resolve the issue and submit the patches again.
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: Bluetooth: btusb: Add support for Mercusys MA530 Bluetooth adapter
2026-01-11 7:37 [PATCH] " Santiago Cruz
@ 2026-01-11 8:42 ` bluez.test.bot
0 siblings, 0 replies; 6+ messages in thread
From: bluez.test.bot @ 2026-01-11 8:42 UTC (permalink / raw)
To: linux-bluetooth, santiagocr
[-- Attachment #1: Type: text/plain, Size: 3101 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=1040804
---Test result---
Test Summary:
CheckPatch PENDING 0.32 seconds
GitLint PENDING 0.24 seconds
SubjectPrefix PASS 0.12 seconds
BuildKernel PASS 25.74 seconds
CheckAllWarning PASS 27.77 seconds
CheckSparse PASS 31.28 seconds
BuildKernel32 PASS 25.32 seconds
TestRunnerSetup PASS 552.96 seconds
TestRunner_l2cap-tester FAIL 51.73 seconds
TestRunner_iso-tester PASS 77.27 seconds
TestRunner_bnep-tester PASS 6.46 seconds
TestRunner_mgmt-tester FAIL 130.05 seconds
TestRunner_rfcomm-tester PASS 9.50 seconds
TestRunner_sco-tester FAIL 14.59 seconds
TestRunner_ioctl-tester PASS 10.32 seconds
TestRunner_mesh-tester FAIL 10.63 seconds
TestRunner_smp-tester PASS 8.54 seconds
TestRunner_userchan-tester PASS 6.59 seconds
IncrementalBuild PENDING 1.06 seconds
Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:
##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:
##############################
Test: TestRunner_l2cap-tester - FAIL
Desc: Run l2cap-tester with test-runner
Output:
Total: 96, Passed: 95 (99.0%), Failed: 1, Not Run: 0
Failed Test Cases
L2CAP LE Client - Close socket 2 Timed out 22.710 seconds
##############################
Test: TestRunner_mgmt-tester - FAIL
Desc: Run mgmt-tester with test-runner
Output:
Total: 494, Passed: 486 (98.4%), Failed: 4, Not Run: 4
Failed Test Cases
Read Exp Feature - Success Failed 0.118 seconds
LL Privacy - Add Device 2 (2 Devices to AL) Failed 0.193 seconds
LL Privacy - Set Flags 2 (Enable RL) Failed 0.170 seconds
LL Privacy - Set Flags 4 (RL is full) Failed 0.233 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 Failed 0.136 seconds
Mesh - Send cancel - 2 Timed out 2.584 seconds
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-01-11 8:42 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-31 10:50 [PATCH] Bluetooth: btusb: Add support for Mercusys MA530 Bluetooth adapter 3
2025-08-31 10:57 ` Paul Menzel
2025-08-31 11:13 ` bluez.test.bot
-- strict thread matches above, loose matches on Subject: below --
2026-01-11 7:37 [PATCH] " Santiago Cruz
2026-01-11 8:42 ` bluez.test.bot
2025-08-30 23:57 [PATCH] " 3
2025-08-31 1:10 ` bluez.test.bot
2025-08-30 23:35 [PATCH] " 3
2025-08-30 23:37 ` bluez.test.bot
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.