diff options
Diffstat (limited to 'include/net/bluetooth/hci.h')
| -rw-r--r-- | include/net/bluetooth/hci.h | 9 | 
1 files changed, 7 insertions, 2 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index e0512aaef4b..d84ec07b309 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -198,8 +198,10 @@ enum {  #define ESCO_2EV5	0x0100  #define ESCO_3EV5	0x0200 -#define SCO_ESCO_MASK  (ESCO_HV1 | ESCO_HV2 | ESCO_HV3) -#define EDR_ESCO_MASK  (ESCO_2EV3 | ESCO_3EV3 | ESCO_2EV5 | ESCO_3EV5) +#define SCO_ESCO_MASK	(ESCO_HV1 | ESCO_HV2 | ESCO_HV3) +#define EDR_ESCO_MASK	(ESCO_2EV3 | ESCO_3EV3 | ESCO_2EV5 | ESCO_3EV5) +#define ALL_ESCO_MASK	(SCO_ESCO_MASK | ESCO_EV3 | ESCO_EV4 | ESCO_EV5 | \ +			EDR_ESCO_MASK)  /* ACL flags */  #define ACL_START_NO_FLUSH	0x00 @@ -1628,6 +1630,9 @@ struct hci_conn_info {  	__u8     out;  	__u16    state;  	__u32    link_mode; +	__u32    mtu; +	__u32    cnt; +	__u32    pkts;  };  struct hci_dev_req {  |