From: Luiz Augusto von Dentz <[email protected]>
This adds GMAP 1.0[1] UUIDs following the assigned numbers[2].
[1] https://www.bluetooth.org/DocMan/handlers/DownloadDoc.ashx?doc_id=576496
[2] https://www.bluetooth.com/wp-content/uploads/Files/Specification/Assigned_Numbers.pdf?id=3
---
src/shared/util.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/shared/util.c b/src/shared/util.c
index bf37fce364ed..47efff750e30 100644
--- a/src/shared/util.c
+++ b/src/shared/util.c
@@ -773,6 +773,7 @@ static const struct {
{ 0x1854, "Hearing Aid" },
{ 0x1855, "Telephony and Media Audio" },
{ 0x1856, "Public Broadcast Announcement" },
+ { 0x1858, "Gaming Audio" },
/* 0x1857 to 0x27ff undefined */
{ 0x2800, "Primary Service" },
{ 0x2801, "Secondary Service" },
@@ -1081,6 +1082,11 @@ static const struct {
{ 0x2bda, "Hearing Aid Features" },
{ 0x2bdb, "Hearing Aid Preset Control Point" },
{ 0x2bdc, "Active Preset Index" },
+ { 0x2c00, "GMAP Role" },
+ { 0x2c01, "UGG Features" },
+ { 0x2c02, "UGT Features" },
+ { 0x2c03, "BGS Features" },
+ { 0x2c03, "BGR Features" },
/* vendor defined */
{ 0xfeff, "GN Netcom" },
{ 0xfefe, "GN ReSound A/S" },
--
2.42.0
From: Luiz Augusto von Dentz <[email protected]>
This adds GMAS attribute decoders.
---
monitor/att.c | 135 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 135 insertions(+)
diff --git a/monitor/att.c b/monitor/att.c
index 39ea5d6dac5a..9db273223352 100644
--- a/monitor/att.c
+++ b/monitor/att.c
@@ -3195,6 +3195,140 @@ static void bcast_audio_scan_cp_write(const struct l2cap_frame *frame)
print_bcast_audio_scan_cp_cmd(frame);
}
+static const struct bitfield_data gmap_role_table[] = {
+ { 0, "Unicast Game Gateway (UGG) (0x0001)" },
+ { 1, "Unicast Game Terminal (UGT) (0x0002)" },
+ { 2, "Broadcast Game Sender (BGS) (0x0004)" },
+ { 3, "Broadcast Game Receiver (BGR) (0x0008)" },
+ { }
+};
+
+static void gmap_role_read(const struct l2cap_frame *frame)
+{
+ uint8_t role;
+ uint8_t mask;
+
+ if (!l2cap_frame_get_u8((void *)frame, &role)) {
+ print_text(COLOR_ERROR, " invalid size");
+ return;
+ }
+
+ print_field(" Role: 0x%2.2x", role);
+
+ mask = print_bitfield(6, role, gmap_role_table);
+ if (mask)
+ print_text(COLOR_WHITE_BG, " Unknown fields (0x%2.2x)",
+ mask);
+}
+
+static const struct bitfield_data ugg_features_table[] = {
+ { 0, "UGG Multiplex (0x0001)" },
+ { 1, "UGG 96 kbps Source (0x0002)" },
+ { 2, "UGG Multilink (0x0004)" },
+ { }
+};
+
+static void ugg_features_read(const struct l2cap_frame *frame)
+{
+ uint8_t value;
+ uint8_t mask;
+
+ if (!l2cap_frame_get_u8((void *)frame, &value)) {
+ print_text(COLOR_ERROR, " invalid size");
+ return;
+ }
+
+ print_field(" Value: 0x%2.2x", value);
+
+ mask = print_bitfield(6, value, ugg_features_table);
+ if (mask)
+ print_text(COLOR_WHITE_BG, " Unknown fields (0x%2.2x)",
+ mask);
+}
+
+static const struct bitfield_data ugt_features_table[] = {
+ { 0, "UGT Source (0x0001)" },
+ { 1, "UGT 80 kbps Source (0x0002)" },
+ { 2, "UGT Sink (0x0004)" },
+ { 3, "UGT 64 kbps Sink (0x0008)" },
+ { 4, "UGT Multiplex (0x0010)" },
+ { 5, "UGT Multisink (0x0020)" },
+ { 6, "UGT Multisource (0x0040)" },
+ { }
+};
+
+static void ugt_features_read(const struct l2cap_frame *frame)
+{
+ uint8_t value;
+ uint8_t mask;
+
+ if (!l2cap_frame_get_u8((void *)frame, &value)) {
+ print_text(COLOR_ERROR, " invalid size");
+ return;
+ }
+
+ print_field(" Value: 0x%2.2x", value);
+
+ mask = print_bitfield(6, value, ugt_features_table);
+ if (mask)
+ print_text(COLOR_WHITE_BG, " Unknown fields (0x%2.2x)",
+ mask);
+}
+
+static const struct bitfield_data bgs_features_table[] = {
+ { 0, "BGS 96 kbps (0x0001)" },
+ { }
+};
+
+static void bgs_features_read(const struct l2cap_frame *frame)
+{
+ uint8_t value;
+ uint8_t mask;
+
+ if (!l2cap_frame_get_u8((void *)frame, &value)) {
+ print_text(COLOR_ERROR, " invalid size");
+ return;
+ }
+
+ print_field(" Value: 0x%2.2x", value);
+
+ mask = print_bitfield(6, value, bgs_features_table);
+ if (mask)
+ print_text(COLOR_WHITE_BG, " Unknown fields (0x%2.2x)",
+ mask);
+}
+
+static const struct bitfield_data bgr_features_table[] = {
+ { 0, "BGR Multisink (0x0001)" },
+ { 1, "BGR Multiplex (0x0002)" },
+ { }
+};
+
+static void bgr_features_read(const struct l2cap_frame *frame)
+{
+ uint8_t value;
+ uint8_t mask;
+
+ if (!l2cap_frame_get_u8((void *)frame, &value)) {
+ print_text(COLOR_ERROR, " invalid size");
+ return;
+ }
+
+ print_field(" Value: 0x%2.2x", value);
+
+ mask = print_bitfield(6, value, bgr_features_table);
+ if (mask)
+ print_text(COLOR_WHITE_BG, " Unknown fields (0x%2.2x)",
+ mask);
+}
+
+#define GMAS \
+ GATT_HANDLER(0x2c00, gmap_role_read, NULL, NULL), \
+ GATT_HANDLER(0x2c01, ugg_features_read, NULL, NULL), \
+ GATT_HANDLER(0x2c02, ugt_features_read, NULL, NULL), \
+ GATT_HANDLER(0x2c02, bgs_features_read, NULL, NULL), \
+ GATT_HANDLER(0x2c03, bgr_features_read, NULL, NULL)
+
#define GATT_HANDLER(_uuid, _read, _write, _notify) \
{ \
.uuid = { \
@@ -3255,6 +3389,7 @@ struct gatt_handler {
GATT_HANDLER(0x2bc7, NULL, bcast_audio_scan_cp_write, NULL),
GATT_HANDLER(0x2bc8, bcast_recv_state_read, NULL,
bcast_recv_state_notify),
+ GMAS
};
static struct gatt_handler *get_handler_uuid(const bt_uuid_t *uuid)
--
2.42.0
From: Luiz Augusto von Dentz <[email protected]>
This adds the following presets from GMAP:
ISO QoS 48_1_gc - Success Passed
ISO QoS 48_2_gc - Success Passed
ISO QoS 48_1_gr - Success Passed
ISO QoS 48_2_gr - Success Passed
ISO QoS 48_3_gr - Success Passed
ISO QoS 48_4_gr - Success Passed
---
tools/iso-tester.c | 109 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 109 insertions(+)
diff --git a/tools/iso-tester.c b/tools/iso-tester.c
index 9fccbaa809e4..4d47373e3290 100644
--- a/tools/iso-tester.c
+++ b/tools/iso-tester.c
@@ -154,6 +154,19 @@
#define QOS_48_4_2 QOS_OUT(10000, 100, 120, 0x02, 13)
#define QOS_48_5_2 QOS_OUT(7500, 75, 117, 0x02, 13)
#define QOS_48_6_2 QOS_OUT(10000, 100, 155, 0x02, 13)
+/* QoS configuration support setting requirements for the UGG and UGT */
+#define QOS_16_1_gs QOS(7500, 15, 30, 0x02, 1)
+#define QOS_16_2_gs QOS(10000, 20, 40, 0x02, 1)
+#define QOS_32_1_gs QOS(7500, 15, 60, 0x02, 1)
+#define QOS_32_2_gs QOS(10000, 20, 80, 0x02, 1)
+#define QOS_48_1_gs QOS(7500, 15, 75, 0x02, 1)
+#define QOS_48_2_gs QOS(10000, 20, 100, 0x02, 1)
+#define QOS_32_1_gr QOS(7500, 15, 60, 0x02, 1)
+#define QOS_32_2_gr QOS(10000, 20, 80, 0x02, 1)
+#define QOS_48_1_gr QOS(7500, 15, 75, 0x02, 1)
+#define QOS_48_2_gr QOS(10000, 20, 100, 0x02, 1)
+#define QOS_48_3_gr QOS(7500, 15, 90, 0x02, 1)
+#define QOS_48_4_gr QOS(10000, 20, 120, 0x02, 1)
/* One unidirectional CIS. Unicast Server is Audio Sink */
#define AC_1_4 QOS_OUT(10000, 10, 40, 0x02, 2)
@@ -810,6 +823,66 @@ static const struct iso_client_data connect_48_6_2 = {
.expect_err = 0
};
+static const struct iso_client_data connect_16_1_gs = {
+ .qos = QOS_16_1_gs,
+ .expect_err = 0
+};
+
+static const struct iso_client_data connect_16_2_gs = {
+ .qos = QOS_16_2_gs,
+ .expect_err = 0
+};
+
+static const struct iso_client_data connect_32_1_gs = {
+ .qos = QOS_32_1_gs,
+ .expect_err = 0
+};
+
+static const struct iso_client_data connect_32_2_gs = {
+ .qos = QOS_32_2_gs,
+ .expect_err = 0
+};
+
+static const struct iso_client_data connect_48_1_gs = {
+ .qos = QOS_48_1_gs,
+ .expect_err = 0
+};
+
+static const struct iso_client_data connect_48_2_gs = {
+ .qos = QOS_48_2_gs,
+ .expect_err = 0
+};
+
+static const struct iso_client_data connect_32_1_gr = {
+ .qos = QOS_32_1_gr,
+ .expect_err = 0
+};
+
+static const struct iso_client_data connect_32_2_gr = {
+ .qos = QOS_32_2_gr,
+ .expect_err = 0
+};
+
+static const struct iso_client_data connect_48_1_gr = {
+ .qos = QOS_48_1_gr,
+ .expect_err = 0
+};
+
+static const struct iso_client_data connect_48_2_gr = {
+ .qos = QOS_48_2_gr,
+ .expect_err = 0
+};
+
+static const struct iso_client_data connect_48_3_gr = {
+ .qos = QOS_48_3_gr,
+ .expect_err = 0
+};
+
+static const struct iso_client_data connect_48_4_gr = {
+ .qos = QOS_48_4_gr,
+ .expect_err = 0
+};
+
static const struct iso_client_data connect_invalid = {
.qos = QOS(0, 0, 0, 0, 0),
.expect_err = -EINVAL
@@ -2945,6 +3018,42 @@ int main(int argc, char *argv[])
test_iso("ISO QoS 48_6_2 - Success", &connect_48_6_2, setup_powered,
test_connect);
+ test_iso("ISO QoS 16_1_gs - Success", &connect_16_1_gs, setup_powered,
+ test_connect);
+
+ test_iso("ISO QoS 16_2_gs - Success", &connect_16_2_gs, setup_powered,
+ test_connect);
+
+ test_iso("ISO QoS 32_1_gs - Success", &connect_32_1_gs, setup_powered,
+ test_connect);
+
+ test_iso("ISO QoS 32_2_gs - Success", &connect_32_2_gs, setup_powered,
+ test_connect);
+
+ test_iso("ISO QoS 48_1_gs - Success", &connect_48_1_gs, setup_powered,
+ test_connect);
+
+ test_iso("ISO QoS 48_2_gs - Success", &connect_48_2_gs, setup_powered,
+ test_connect);
+
+ test_iso("ISO QoS 32_1_gr - Success", &connect_32_1_gr, setup_powered,
+ test_connect);
+
+ test_iso("ISO QoS 32_2_gr - Success", &connect_32_2_gr, setup_powered,
+ test_connect);
+
+ test_iso("ISO QoS 48_1_gr - Success", &connect_48_1_gr, setup_powered,
+ test_connect);
+
+ test_iso("ISO QoS 48_2_gr - Success", &connect_48_2_gr, setup_powered,
+ test_connect);
+
+ test_iso("ISO QoS 48_3_gr - Success", &connect_48_3_gr, setup_powered,
+ test_connect);
+
+ test_iso("ISO QoS 48_4_gr - Success", &connect_48_4_gr, setup_powered,
+ test_connect);
+
test_iso("ISO QoS - Invalid", &connect_invalid, setup_powered,
test_connect);
--
2.42.0
From: Luiz Augusto von Dentz <[email protected]>
This adds the following presets from GMAP:
16_1_gs
16_2_gs
32_1_gs
32_2_gs
48_1_gs
48_2_gs
32_1_gr
32_2_gr
48_1_gr
48_2_gr
48_3_gr
48_4_gr
32_1_gr_l+r
32_2_gr_l+r
48_1_gr_l+r
48_2_gr_l+r
48_3_gr_l+r
48_4_gr_l+r
---
client/player.c | 76 ++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 75 insertions(+), 1 deletion(-)
diff --git a/client/player.c b/client/player.c
index 715598aa9405..4a7042412248 100644
--- a/client/player.c
+++ b/client/player.c
@@ -1314,6 +1314,13 @@ static struct codec_preset sbc_presets[] = {
0x02, LC3_CONFIG_DURATION, _duration, \
0x03, LC3_CONFIG_FRAME_LEN, _len, _len >> 8)
+#define LC3_PRESET_DATA_ALL(_freq, _duration, _alloc, _len) \
+ CODEC_DATA(0x02, LC3_CONFIG_FREQ, _freq, \
+ 0x02, LC3_CONFIG_DURATION, _duration, \
+ 0x05, LC3_CONFIG_CHAN_ALLOC, _alloc, _alloc >> 8, \
+ _alloc >> 16, _alloc >> 24, \
+ 0x03, LC3_CONFIG_FRAME_LEN, _len, _len >> 8)
+
#define LC3_PRESET_8KHZ(_duration, _len) \
LC3_PRESET_DATA(LC3_CONFIG_FREQ_8KHZ, _duration, _len)
@@ -1332,18 +1339,24 @@ static struct codec_preset sbc_presets[] = {
#define LC3_PRESET_32KHZ(_duration, _len) \
LC3_PRESET_DATA(LC3_CONFIG_FREQ_32KHZ, _duration, _len)
+#define LC3_PRESET_32KHZ_ALL(_duration, _len, _alloc) \
+ LC3_PRESET_DATA_ALL(LC3_CONFIG_FREQ_48KHZ, _duration, _alloc, _len)
+
#define LC3_PRESET_44KHZ(_duration, _len) \
LC3_PRESET_DATA(LC3_CONFIG_FREQ_44KHZ, _duration, _len)
#define LC3_PRESET_48KHZ(_duration, _len) \
LC3_PRESET_DATA(LC3_CONFIG_FREQ_48KHZ, _duration, _len)
+#define LC3_PRESET_48KHZ_ALL(_duration, _len, _alloc) \
+ LC3_PRESET_DATA_ALL(LC3_CONFIG_FREQ_48KHZ, _duration, _alloc, _len)
+
#define LC3_PRESET_LL(_name, _data, _qos) \
{ \
.name = _name, \
.data = _data, \
.qos = _qos, \
- .latency = 0x01, \
+ .target_latency = 0x01, \
}
#define LC3_PRESET(_name, _data, _qos) \
@@ -1461,6 +1474,67 @@ static struct codec_preset lc3_presets[] = {
LC3_PRESET_HR("48_6_2",
LC3_PRESET_48KHZ(LC3_CONFIG_DURATION_10, 155u),
LC3_10_UNFRAMED(155u, 13u, 100u, 40000u)),
+ /* QoS configuration support setting requirements for the UGG and UGT */
+ LC3_PRESET_LL("16_1_gs",
+ LC3_PRESET_16KHZ(LC3_CONFIG_DURATION_7_5, 30u),
+ LC3_7_5_UNFRAMED(30u, 1u, 15u, 60000u)),
+ LC3_PRESET_LL("16_2_gs",
+ LC3_PRESET_16KHZ(LC3_CONFIG_DURATION_10, 40u),
+ LC3_10_UNFRAMED(40u, 1u, 20u, 60000u)),
+ LC3_PRESET_LL("32_1_gs",
+ LC3_PRESET_32KHZ(LC3_CONFIG_DURATION_7_5, 60u),
+ LC3_7_5_UNFRAMED(60u, 1u, 15u, 60000u)),
+ LC3_PRESET_LL("32_2_gs",
+ LC3_PRESET_32KHZ(LC3_CONFIG_DURATION_10, 80u),
+ LC3_10_UNFRAMED(80u, 1u, 20u, 60000u)),
+ LC3_PRESET_LL("48_1_gs",
+ LC3_PRESET_48KHZ(LC3_CONFIG_DURATION_7_5, 75u),
+ LC3_7_5_UNFRAMED(75u, 1u, 15u, 60000u)),
+ LC3_PRESET_LL("48_2_gs",
+ LC3_PRESET_48KHZ(LC3_CONFIG_DURATION_10, 100u),
+ LC3_10_UNFRAMED(100u, 1u, 20u, 60000u)),
+ LC3_PRESET_LL("32_1_gr",
+ LC3_PRESET_32KHZ(LC3_CONFIG_DURATION_7_5, 60u),
+ LC3_7_5_UNFRAMED(60u, 1u, 15u, 10000u)),
+ LC3_PRESET_LL("32_2_gr",
+ LC3_PRESET_32KHZ(LC3_CONFIG_DURATION_10, 80u),
+ LC3_10_UNFRAMED(80u, 1u, 20u, 10000u)),
+ LC3_PRESET_LL("48_1_gr",
+ LC3_PRESET_48KHZ(LC3_CONFIG_DURATION_7_5, 75u),
+ LC3_7_5_UNFRAMED(75u, 1u, 15u, 10000u)),
+ LC3_PRESET_LL("48_2_gr",
+ LC3_PRESET_48KHZ(LC3_CONFIG_DURATION_10, 100u),
+ LC3_10_UNFRAMED(100u, 1u, 20u, 10000u)),
+ LC3_PRESET_LL("48_3_gr",
+ LC3_PRESET_48KHZ(LC3_CONFIG_DURATION_7_5, 90u),
+ LC3_7_5_UNFRAMED(90u, 1u, 15u, 10000u)),
+ LC3_PRESET_LL("48_4_gr",
+ LC3_PRESET_48KHZ(LC3_CONFIG_DURATION_10, 120u),
+ LC3_10_UNFRAMED(120u, 1u, 20u, 10000u)),
+ LC3_PRESET_LL("32_1_gr_l+r",
+ LC3_PRESET_32KHZ_ALL(LC3_CONFIG_DURATION_7_5, 60u,
+ 0x00000003),
+ LC3_7_5_UNFRAMED(2 * 60u, 1u, 15u, 10000u)),
+ LC3_PRESET_LL("32_2_gr_l+r",
+ LC3_PRESET_32KHZ_ALL(LC3_CONFIG_DURATION_10, 80u,
+ 0x00000003),
+ LC3_10_UNFRAMED(2 * 80u, 1u, 20u, 10000u)),
+ LC3_PRESET_LL("48_1_gr_l+r",
+ LC3_PRESET_48KHZ_ALL(LC3_CONFIG_DURATION_7_5, 75u,
+ 0x00000003),
+ LC3_7_5_UNFRAMED(2* 75u, 1u, 15u, 10000u)),
+ LC3_PRESET_LL("48_2_gr_l+r",
+ LC3_PRESET_48KHZ_ALL(LC3_CONFIG_DURATION_10, 100u,
+ 0x00000003),
+ LC3_10_UNFRAMED(2* 100u, 1u, 20u, 10000u)),
+ LC3_PRESET_LL("48_3_gr_l+r",
+ LC3_PRESET_48KHZ_ALL(LC3_CONFIG_DURATION_7_5, 90u,
+ 0x00000003),
+ LC3_7_5_UNFRAMED(2 * 90u, 1u, 15u, 10000u)),
+ LC3_PRESET_LL("48_4_gr_l+r",
+ LC3_PRESET_48KHZ_ALL(LC3_CONFIG_DURATION_10, 120u,
+ 0x00000003),
+ LC3_10_UNFRAMED(2 * 120u, 1u, 20u, 10000u)),
};
static void print_ltv(const char *str, void *user_data)
--
2.42.0
From: Luiz Augusto von Dentz <[email protected]>
This adds the following presets from GMAP:
16_1_gs
16_2_gs
32_1_gs
32_2_gs
48_1_gs
48_2_gs
32_1_gr
32_2_gr
48_1_gr
48_2_gr
48_3_gr
48_4_gr
---
tools/isotest.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/tools/isotest.c b/tools/isotest.c
index 234e4f1b0453..2c682bc899fc 100644
--- a/tools/isotest.c
+++ b/tools/isotest.c
@@ -1089,6 +1089,19 @@ static struct qos_preset {
QOS_PRESET("48_4_2", false, 10000, 60, 120, 0x02, 23),
QOS_PRESET("48_5_2", false, 7500, 45, 117, 0x02, 23),
QOS_PRESET("44_6_2", false, 10000, 60, 155, 0x02, 23),
+ /* QoS configuration support setting requirements for the UGG and UGT */
+ QOS_PRESET("16_1_gs", true, 7500, 15, 30, 0x02, 1),
+ QOS_PRESET("16_2_gs", true, 10000, 20, 40, 0x02, 1),
+ QOS_PRESET("32_1_gs", true, 7500, 15, 60, 0x02, 1),
+ QOS_PRESET("32_2_gs", true, 10000, 20, 80, 0x02, 1),
+ QOS_PRESET("48_1_gs", true, 7500, 15, 75, 0x02, 1),
+ QOS_PRESET("48_2_gs", true, 10000, 20, 100, 0x02, 1),
+ QOS_PRESET("32_1_gr", true, 7500, 15, 60, 0x02, 1),
+ QOS_PRESET("32_2_gr", true, 10000, 20, 80, 0x02, 1),
+ QOS_PRESET("48_1_gr", true, 7500, 15, 75, 0x02, 1),
+ QOS_PRESET("48_2_gr", true, 10000, 20, 100, 0x02, 1),
+ QOS_PRESET("48_3_gr", true, 7500, 15, 90, 0x02, 1),
+ QOS_PRESET("48_4_gr", true, 10000, 20, 120, 0x02, 1),
};
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
--
2.42.0
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=803411
---Test result---
Test Summary:
CheckPatch FAIL 2.19 seconds
GitLint FAIL 1.61 seconds
BuildEll PASS 24.11 seconds
BluezMake PASS 556.69 seconds
MakeCheck PASS 11.10 seconds
MakeDistcheck PASS 149.71 seconds
CheckValgrind PASS 209.27 seconds
CheckSmatch WARNING 317.26 seconds
bluezmakeextell PASS 96.60 seconds
IncrementalBuild PASS 2527.23 seconds
ScanBuild PASS 892.97 seconds
Details
##############################
Test: CheckPatch - FAIL
Desc: Run checkpatch.pl script
Output:
[BlueZ,v2,1/5] shared/util: Add GMAP related UUIDs
WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#72:
[1] https://www.bluetooth.org/DocMan/handlers/DownloadDoc.ashx?doc_id=576496
/github/workspace/src/src/13465382.patch total: 0 errors, 1 warnings, 18 lines checked
NOTE: For some of the reported defects, checkpatch may be able to
mechanically convert to the typical style using --fix or --fix-inplace.
/github/workspace/src/src/13465382.patch has style problems, please review.
NOTE: Ignored message types: COMMIT_MESSAGE COMPLEX_MACRO CONST_STRUCT FILE_PATH_CHANGES MISSING_SIGN_OFF PREFER_PACKED SPDX_LICENSE_TAG SPLIT_STRING SSCANF_TO_KSTRTO
NOTE: If any of the errors are false positives, please report
them to the maintainer, see CHECKPATCH in MAINTAINERS.
[BlueZ,v2,5/5] client/player: Add presets from GMAP
ERROR:SPACING: need consistent spacing around '*' (ctx:VxW)
#194: FILE: client/player.c:1525:
+ LC3_7_5_UNFRAMED(2* 75u, 1u, 15u, 10000u)),
^
ERROR:SPACING: need consistent spacing around '*' (ctx:VxW)
#198: FILE: client/player.c:1529:
+ LC3_10_UNFRAMED(2* 100u, 1u, 20u, 10000u)),
^
/github/workspace/src/src/13465386.patch total: 2 errors, 0 warnings, 105 lines checked
NOTE: For some of the reported defects, checkpatch may be able to
mechanically convert to the typical style using --fix or --fix-inplace.
/github/workspace/src/src/13465386.patch has style problems, please review.
NOTE: Ignored message types: COMMIT_MESSAGE COMPLEX_MACRO CONST_STRUCT FILE_PATH_CHANGES MISSING_SIGN_OFF PREFER_PACKED SPDX_LICENSE_TAG SPLIT_STRING SSCANF_TO_KSTRTO
NOTE: If any of the errors are false positives, please report
them to the maintainer, see CHECKPATCH in MAINTAINERS.
##############################
Test: GitLint - FAIL
Desc: Run gitlint
Output:
[BlueZ,v2,1/5] shared/util: Add GMAP related UUIDs
WARNING: I3 - ignore-body-lines: gitlint will be switching from using Python regex 'match' (match beginning) to 'search' (match anywhere) semantics. Please review your ignore-body-lines.regex option accordingly. To remove this warning, set general.regex-style-search=True. More details: https://jorisroovers.github.io/gitlint/configuration/#regex-style-search
8: B1 Line exceeds max length (94>80): "[2] https://www.bluetooth.com/wp-content/uploads/Files/Specification/Assigned_Numbers.pdf?id=3"
##############################
Test: CheckSmatch - WARNING
Desc: Run smatch tool with source
Output:
monitor/att.c: note: in included file:monitor/display.h:82:26: warning: Variable length array is used.
---
Regards,
Linux Bluetooth