diff mbox series

[BlueZ,v2,1/5] shared/lc3: Rename LC3_BASE

Message ID 20240625072711.7011-2-iulia.tanasescu@nxp.com
State New
Headers show
Series test-bap: Add Broadcast Source STR MBIS tests | expand

Commit Message

Iulia Tanasescu June 25, 2024, 7:27 a.m. UTC
This renames LC3_BASE to LC3_TYPE_BASE, so the meaning
of the define is more clear.
---
 src/shared/lc3.h | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

Comments

bluez.test.bot@gmail.com June 25, 2024, 10:55 a.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=865195

---Test result---

Test Summary:
CheckPatch                    PASS      2.35 seconds
GitLint                       PASS      1.44 seconds
BuildEll                      PASS      24.52 seconds
BluezMake                     PASS      1767.92 seconds
MakeCheck                     PASS      12.93 seconds
MakeDistcheck                 PASS      181.14 seconds
CheckValgrind                 PASS      259.12 seconds
CheckSmatch                   PASS      359.95 seconds
bluezmakeextell               PASS      121.59 seconds
IncrementalBuild              PASS      8109.81 seconds
ScanBuild                     PASS      1024.99 seconds



---
Regards,
Linux Bluetooth
diff mbox series

Patch

diff --git a/src/shared/lc3.h b/src/shared/lc3.h
index 95aa21702..abd9b29a3 100644
--- a/src/shared/lc3.h
+++ b/src/shared/lc3.h
@@ -12,9 +12,9 @@ 
 
 #define LC3_ID			0x06
 
-#define LC3_BASE		0x01
+#define LC3_TYPE_BASE		0x01
 
-#define LC3_FREQ		(LC3_BASE)
+#define LC3_FREQ		LC3_TYPE_BASE
 #define LC3_FREQ_8KHZ		BIT(0)
 #define LC3_FREQ_11KHZ		BIT(1)
 #define LC3_FREQ_16KHZ		BIT(2)
@@ -32,7 +32,7 @@ 
 					LC3_FREQ_44KHZ | \
 					LC3_FREQ_48KHZ)
 
-#define LC3_DURATION		(LC3_BASE + 1)
+#define LC3_DURATION		(LC3_TYPE_BASE + 1)
 #define LC3_DURATION_7_5	BIT(0)
 #define LC3_DURATION_10		BIT(1)
 #define LC3_DURATION_ANY	(LC3_DURATION_7_5 | LC3_DURATION_10)
@@ -40,12 +40,12 @@ 
 #define LC3_DURATION_PREFER_10	BIT(5)
 
 
-#define LC3_CHAN_COUNT		(LC3_BASE + 2)
+#define LC3_CHAN_COUNT		(LC3_TYPE_BASE + 2)
 #define LC3_CHAN_COUNT_SUPPORT	BIT(0)
 
-#define LC3_FRAME_LEN		(LC3_BASE + 3)
+#define LC3_FRAME_LEN		(LC3_TYPE_BASE + 3)
 
-#define LC3_FRAME_COUNT		(LC3_BASE + 4)
+#define LC3_FRAME_COUNT		(LC3_TYPE_BASE + 4)
 
 #define LC3_CAPABILITIES(_freq, _duration, _chan_count, _len_min, _len_max) \
 	UTIL_IOV_INIT(0x02, LC3_FREQ, _freq, _freq >> 8, \