[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1293472810-30233-1-git-send-email-dsterba@suse.cz>
Date: Mon, 27 Dec 2010 19:00:10 +0100
From: David Sterba <dsterba@...e.cz>
To: padovan@...fusion.mobi
Cc: linux-bluetooth@...r.kernel.org, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org, David Sterba <dsterba@...e.cz>,
Marcel Holtmann <marcel@...tmann.org>,
João Paulo Rechi Vita
<jprvita@...fusion.mobi>
Subject: [PATCH] Bluetooth: l2cap: fix misuse of logical operation in place of bitop
CC: Marcel Holtmann <marcel@...tmann.org>
CC: "Gustavo F. Padovan" <padovan@...fusion.mobi>
CC: João Paulo Rechi Vita <jprvita@...fusion.mobi>
Signed-off-by: David Sterba <dsterba@...e.cz>
---
net/bluetooth/l2cap.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/bluetooth/l2cap.c b/net/bluetooth/l2cap.c
index cd8f6ea..bdfdfdc 100644
--- a/net/bluetooth/l2cap.c
+++ b/net/bluetooth/l2cap.c
@@ -1893,8 +1893,8 @@ static int l2cap_sock_sendmsg(struct kiocb *iocb, struct socket *sock, struct ms
if (pi->mode == L2CAP_MODE_STREAMING) {
l2cap_streaming_send(sk);
} else {
- if (pi->conn_state & L2CAP_CONN_REMOTE_BUSY &&
- pi->conn_state && L2CAP_CONN_WAIT_F) {
+ if ((pi->conn_state & L2CAP_CONN_REMOTE_BUSY) &&
+ (pi->conn_state & L2CAP_CONN_WAIT_F)) {
err = len;
break;
}
--
1.7.3.4.626.g73e7b
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists