diff options
author | Andrei Emeltchenko <andrei.emeltchenko@intel.com> | 2011-10-11 07:04:32 -0400 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-10-11 09:48:21 -0400 |
commit | ecf61bdba845b5e77cf1d5e8620ef54abcfa50ef (patch) | |
tree | 5a7c1d6d50278aed67ef74a1f69eac4176614de2 /include/net/bluetooth/l2cap.h | |
parent | d57b0e8b8990419b7b7ae0dda5cc4452720b3c7c (diff) |
Bluetooth: convert force_reliable variable to flag in l2cap chan
force_reliable variable inside l2cap_chan is a logical one and can
be easily converted to flag
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net/bluetooth/l2cap.h')
-rw-r--r-- | include/net/bluetooth/l2cap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h index 0fe5d59b71a3..6c0d247de94c 100644 --- a/include/net/bluetooth/l2cap.h +++ b/include/net/bluetooth/l2cap.h | |||
@@ -325,7 +325,6 @@ struct l2cap_chan { | |||
325 | 325 | ||
326 | __u8 sec_level; | 326 | __u8 sec_level; |
327 | __u8 role_switch; | 327 | __u8 role_switch; |
328 | __u8 force_reliable; | ||
329 | __u8 force_active; | 328 | __u8 force_active; |
330 | 329 | ||
331 | __u8 ident; | 330 | __u8 ident; |
@@ -465,6 +464,7 @@ enum { | |||
465 | 464 | ||
466 | /* Definitions for flags in l2cap_chan */ | 465 | /* Definitions for flags in l2cap_chan */ |
467 | enum { | 466 | enum { |
467 | FLAG_FORCE_RELIABLE, | ||
468 | FLAG_FLUSHABLE, | 468 | FLAG_FLUSHABLE, |
469 | }; | 469 | }; |
470 | 470 | ||