Bluetooth: convert flushable variable to flag in l2cap chan
flushable variable inside l2cap_chan is a logical one and can be easily converted to flag. Added flags in l2cap_chan structure. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
This commit is contained in:
committed by
Gustavo F. Padovan
parent
d4b8d1c9c1
commit
d57b0e8b89
@@ -1253,7 +1253,8 @@ static void l2cap_do_send(struct l2cap_chan *chan, struct sk_buff *skb)
|
||||
|
||||
BT_DBG("chan %p, skb %p len %d", chan, skb, skb->len);
|
||||
|
||||
if (!chan->flushable && lmp_no_flush_capable(hcon->hdev))
|
||||
if (!test_bit(FLAG_FLUSHABLE, &chan->flags) &&
|
||||
lmp_no_flush_capable(hcon->hdev))
|
||||
flags = ACL_START_NO_FLUSH;
|
||||
else
|
||||
flags = ACL_START;
|
||||
|
Reference in New Issue
Block a user