Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1e602906 authored by Chris Manton's avatar Chris Manton Committed by Automerger Merge Worker
Browse files

Use strict return type HCI_SNIFF_SUB_RATE_SUPPORTED am: 468dc01d am: 710154af

Original change: https://android-review.googlesource.com/c/platform/system/bt/+/1526355

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I12f38348c6cdd6724e4d36534c466e8db020790f
parents 246e9b91 710154af
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -955,7 +955,7 @@ typedef struct {
#define HCI_3_SLOT_EDR_ACL_SUPPORTED(x) ((x)[4] & 0x80)

#define HCI_5_SLOT_EDR_ACL_SUPPORTED(x) ((x)[5] & 0x01)
#define HCI_SNIFF_SUB_RATE_SUPPORTED(x) ((x)[5] & 0x02)
#define HCI_SNIFF_SUB_RATE_SUPPORTED(x) (static_cast<bool>((x)[5] & 0x02))
#define HCI_ATOMIC_ENCRYPT_SUPPORTED(x) ((x)[5] & 0x04)
#define HCI_LMP_AFH_CAP_MASTR_SUPPORTED(x) ((x)[5] & 0x08)
#define HCI_LMP_AFH_CLASS_MASTR_SUPPORTED(x) ((x)[5] & 0x10)