diff options
-rw-r--r-- | include/hci.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/hci.h b/include/hci.h index 8c898d42..d36a43eb 100644 --- a/include/hci.h +++ b/include/hci.h @@ -122,10 +122,10 @@ enum { #define ACL_PTYPE_MASK (~SCO_PTYPE_MASK) /* ACL flags */ -#define ACL_CONT 0x0001 -#define ACL_START 0x0002 -#define ACL_ACTIVE_BCAST 0x0010 -#define ACL_PICO_BCAST 0x0020 +#define ACL_CONT 0x01 +#define ACL_START 0x02 +#define ACL_ACTIVE_BCAST 0x04 +#define ACL_PICO_BCAST 0x08 /* Baseband links */ #define SCO_LINK 0x00 |