diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2015-10-26 00:45:18 +0300 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2015-10-26 09:20:51 +0300 |
commit | d94a61040d8f99cbaf7f3e7686315edcc6dc2400 (patch) | |
tree | 4273d0b44959a5b867d650ee1763cc87d89dfe86 /net/bluetooth/hci_sock.c | |
parent | 1da5537eccd865b83fedbbb7ea704669f6d255fd (diff) | |
download | linux-d94a61040d8f99cbaf7f3e7686315edcc6dc2400.tar.xz |
Bluetooth: Remove unneeded parenthesis around MSG_OOB
There are two checks that are still using (MSG_OOB) instead of just
MSG_OOB and so lets just fix them.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth/hci_sock.c')
-rw-r--r-- | net/bluetooth/hci_sock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_sock.c b/net/bluetooth/hci_sock.c index b9327e8c2d34..c8812a46d831 100644 --- a/net/bluetooth/hci_sock.c +++ b/net/bluetooth/hci_sock.c @@ -1001,7 +1001,7 @@ static int hci_sock_recvmsg(struct socket *sock, struct msghdr *msg, size_t len, BT_DBG("sock %p, sk %p", sock, sk); - if (flags & (MSG_OOB)) + if (flags & MSG_OOB) return -EOPNOTSUPP; if (sk->sk_state == BT_CLOSED) |