Message ID | 20240216-bluetooth-defines-v1-1-6c39aacc66a8@fairphone.com |
---|---|
State | New |
Headers | show |
Series | Bluetooth: Add more Bluetooth version defines | expand |
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=826776 ---Test result--- Test Summary: CheckPatch PASS 0.50 seconds GitLint PASS 0.22 seconds SubjectPrefix PASS 0.09 seconds BuildKernel PASS 27.66 seconds CheckAllWarning PASS 30.37 seconds CheckSparse PASS 35.43 seconds CheckSmatch PASS 97.60 seconds BuildKernel32 PASS 26.83 seconds TestRunnerSetup PASS 499.07 seconds TestRunner_l2cap-tester PASS 17.96 seconds TestRunner_iso-tester PASS 26.91 seconds TestRunner_bnep-tester PASS 4.85 seconds TestRunner_mgmt-tester FAIL 167.43 seconds TestRunner_rfcomm-tester PASS 7.48 seconds TestRunner_sco-tester PASS 14.98 seconds TestRunner_ioctl-tester PASS 7.80 seconds TestRunner_mesh-tester PASS 5.85 seconds TestRunner_smp-tester PASS 6.91 seconds TestRunner_userchan-tester PASS 5.63 seconds IncrementalBuild PASS 26.04 seconds Details ############################## Test: TestRunner_mgmt-tester - FAIL Desc: Run mgmt-tester with test-runner Output: Total: 492, Passed: 485 (98.6%), Failed: 6, Not Run: 1 Failed Test Cases LL Privacy - Add Device 4 (2 Devices to AL) Failed 0.113 seconds LL Privacy - Add Device 5 (2 Devices to RL) Failed 0.115 seconds LL Privacy - Add Device 6 (RL is full) Failed 0.146 seconds LL Privacy - Add Device 7 (AL is full) Failed 0.143 seconds LL Privacy - Remove Device 2 (Remove from RL) Timed out 2.667 seconds LL Privacy - Remove Device 4 (Disable Adv) Timed out 1.842 seconds --- Regards, Linux Bluetooth
On Fri Feb 16, 2024 at 2:22 PM CET, Luca Weiss wrote: > Add the various Bluetooth version identifiers found in the "Assigned > Numbers" document[0] from the Bluetooth SIG. > > [0] https://www.bluetooth.com/specifications/assigned-numbers/ Hi all, Is there any interest in this patch? Would be nice to get at least a positive or negative reaction to it. Regards Luca > > Signed-off-by: Luca Weiss <luca.weiss@fairphone.com> > --- > To be clear, I don't have a use case for these extra defines myself but > some time ago when working on Bluetooth I came across this and thought > it would be interesting to have the list complete. No other motives. > --- > include/net/bluetooth/bluetooth.h | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/include/net/bluetooth/bluetooth.h b/include/net/bluetooth/bluetooth.h > index 7ffa8c192c3f..818eb142eda3 100644 > --- a/include/net/bluetooth/bluetooth.h > +++ b/include/net/bluetooth/bluetooth.h > @@ -39,11 +39,20 @@ > #endif > > /* Bluetooth versions */ > +#define BLUETOOTH_VER_1_0B 0 > #define BLUETOOTH_VER_1_1 1 > #define BLUETOOTH_VER_1_2 2 > #define BLUETOOTH_VER_2_0 3 > #define BLUETOOTH_VER_2_1 4 > +#define BLUETOOTH_VER_3_0 5 > #define BLUETOOTH_VER_4_0 6 > +#define BLUETOOTH_VER_4_1 7 > +#define BLUETOOTH_VER_4_2 8 > +#define BLUETOOTH_VER_5_0 9 > +#define BLUETOOTH_VER_5_1 10 > +#define BLUETOOTH_VER_5_2 11 > +#define BLUETOOTH_VER_5_3 12 > +#define BLUETOOTH_VER_5_4 13 > > /* Reserv for core and drivers use */ > #define BT_SKB_RESERVE 8 > > --- > base-commit: 841c35169323cd833294798e58b9bf63fa4fa1de > change-id: 20240216-bluetooth-defines-b810ce543191 > > Best regards,
diff --git a/include/net/bluetooth/bluetooth.h b/include/net/bluetooth/bluetooth.h index 7ffa8c192c3f..818eb142eda3 100644 --- a/include/net/bluetooth/bluetooth.h +++ b/include/net/bluetooth/bluetooth.h @@ -39,11 +39,20 @@ #endif /* Bluetooth versions */ +#define BLUETOOTH_VER_1_0B 0 #define BLUETOOTH_VER_1_1 1 #define BLUETOOTH_VER_1_2 2 #define BLUETOOTH_VER_2_0 3 #define BLUETOOTH_VER_2_1 4 +#define BLUETOOTH_VER_3_0 5 #define BLUETOOTH_VER_4_0 6 +#define BLUETOOTH_VER_4_1 7 +#define BLUETOOTH_VER_4_2 8 +#define BLUETOOTH_VER_5_0 9 +#define BLUETOOTH_VER_5_1 10 +#define BLUETOOTH_VER_5_2 11 +#define BLUETOOTH_VER_5_3 12 +#define BLUETOOTH_VER_5_4 13 /* Reserv for core and drivers use */ #define BT_SKB_RESERVE 8
Add the various Bluetooth version identifiers found in the "Assigned Numbers" document[0] from the Bluetooth SIG. [0] https://www.bluetooth.com/specifications/assigned-numbers/ Signed-off-by: Luca Weiss <luca.weiss@fairphone.com> --- To be clear, I don't have a use case for these extra defines myself but some time ago when working on Bluetooth I came across this and thought it would be interesting to have the list complete. No other motives. --- include/net/bluetooth/bluetooth.h | 9 +++++++++ 1 file changed, 9 insertions(+) --- base-commit: 841c35169323cd833294798e58b9bf63fa4fa1de change-id: 20240216-bluetooth-defines-b810ce543191 Best regards,