diff mbox series

shared/util: Correct UUID for Microphone Control

Message ID 20220821160248.3481431-1-kmachanwenw@gmail.com (mailing list archive)
State Accepted
Commit 4760ada065f22604795295d1377e6a50a2d5efac
Headers show
Series shared/util: Correct UUID for Microphone Control | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
tedd_an/checkpatch success Checkpatch PASS
tedd_an/gitlint success Gitlint PASS
tedd_an/setupell success Setup ELL PASS
tedd_an/buildprep success Build Prep PASS
tedd_an/build success Build Configuration PASS
tedd_an/makecheck success Make Check PASS
tedd_an/makecheckvalgrind success Make Check PASS
tedd_an/makedistcheck success Make Distcheck PASS
tedd_an/build_extell success Build External ELL PASS
tedd_an/build_extell_make success Build Make with External ELL PASS
tedd_an/scan_build success Pass

Commit Message

darkhz Aug. 21, 2022, 4:02 p.m. UTC
According to the Bluetooth product specification list, the allocated
UUID for "Microphone Control" is 0x184D, not 0x184C.
---
 src/shared/util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

bluez.test.bot@gmail.com Aug. 21, 2022, 5:11 p.m. UTC | #1
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=669554

---Test result---

Test Summary:
CheckPatch                    PASS      1.41 seconds
GitLint                       PASS      1.00 seconds
Prep - Setup ELL              PASS      26.83 seconds
Build - Prep                  PASS      0.93 seconds
Build - Configure             PASS      8.56 seconds
Build - Make                  PASS      867.08 seconds
Make Check                    PASS      12.21 seconds
Make Check w/Valgrind         PASS      287.66 seconds
Make Distcheck                PASS      240.80 seconds
Build w/ext ELL - Configure   PASS      8.78 seconds
Build w/ext ELL - Make        PASS      82.39 seconds
Incremental Build w/ patches  PASS      0.00 seconds
Scan Build                    PASS      510.53 seconds



---
Regards,
Linux Bluetooth
patchwork-bot+bluetooth@kernel.org Aug. 22, 2022, 10:50 p.m. UTC | #2
Hello:

This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Sun, 21 Aug 2022 21:32:48 +0530 you wrote:
> According to the Bluetooth product specification list, the allocated
> UUID for "Microphone Control" is 0x184D, not 0x184C.
> ---
>  src/shared/util.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - shared/util: Correct UUID for Microphone Control
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=4760ada065f2

You are awesome, thank you!
diff mbox series

Patch

diff --git a/src/shared/util.c b/src/shared/util.c
index b74a005ce..e1e56459a 100644
--- a/src/shared/util.c
+++ b/src/shared/util.c
@@ -338,7 +338,7 @@  static const struct {
 	{ 0x1849, "Generic Media Control"			},
 	{ 0x184b, "Telephony Bearer"				},
 	{ 0x184c, "Generic Telephony Bearer"			},
-	{ 0x184c, "Microphone Control"				},
+	{ 0x184d, "Microphone Control"				},
 	{ 0x184e, "Audio Stream Control"			},
 	{ 0x184f, "Broadcast Audio Scan"			},
 	{ 0x1850, "Published Audio Capabilities"		},