diff options
author | Andrei Emeltchenko <andrei.emeltchenko@intel.com> | 2012-10-15 11:58:40 +0300 |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2012-10-15 09:46:39 -0300 |
commit | d73a098804b4d1d254b1caf1d114e5b707dee060 (patch) | |
tree | 019ccd495a41af86b8890a0aed7038ff4ba1cb91 /include/net/bluetooth | |
parent | 204a6e54280d53e6990e536998fbf8dfba41ecd3 (diff) | |
download | linux-d73a098804b4d1d254b1caf1d114e5b707dee060.tar.bz2 |
Bluetooth: AMP: Handle complete frames in l2cap
Check flags type in switch statement and handle new frame
type ACL_COMPLETE used for High Speed data over AMP.
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'include/net/bluetooth')
-rw-r--r-- | include/net/bluetooth/hci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index 77b6a197a6f6..88cbbda61027 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -198,6 +198,7 @@ enum { #define ACL_START_NO_FLUSH 0x00 #define ACL_CONT 0x01 #define ACL_START 0x02 +#define ACL_COMPLETE 0x03 #define ACL_ACTIVE_BCAST 0x04 #define ACL_PICO_BCAST 0x08 |