summaryrefslogtreecommitdiffstats
path: root/net/bluetooth/l2cap_core.c
diff options
context:
space:
mode:
authorAndrei Emeltchenko2012-05-31 10:18:57 +0200
committerJohan Hedberg2012-06-05 05:34:14 +0200
commit6810fca724d2a3c08c0d2eb8510648e7a36ab592 (patch)
tree0ff08fb1c0dea175f78a59fb8e37ab5a0a4c337c /net/bluetooth/l2cap_core.c
parentBluetooth: Make l2cap_conless_channel return void (diff)
downloadkernel-qcow2-linux-6810fca724d2a3c08c0d2eb8510648e7a36ab592.tar.gz
kernel-qcow2-linux-6810fca724d2a3c08c0d2eb8510648e7a36ab592.tar.xz
kernel-qcow2-linux-6810fca724d2a3c08c0d2eb8510648e7a36ab592.zip
Bluetooth: Make l2cap_att_channel return void
l2cap_att_channel always returns 0 which is not used. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'net/bluetooth/l2cap_core.c')
-rw-r--r--net/bluetooth/l2cap_core.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index a8d69aba39fd..8229ae4fb4fd 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -5211,8 +5211,8 @@ drop:
kfree_skb(skb);
}
-static inline int l2cap_att_channel(struct l2cap_conn *conn, u16 cid,
- struct sk_buff *skb)
+static void l2cap_att_channel(struct l2cap_conn *conn, u16 cid,
+ struct sk_buff *skb)
{
struct l2cap_chan *chan;
@@ -5229,12 +5229,10 @@ static inline int l2cap_att_channel(struct l2cap_conn *conn, u16 cid,
goto drop;
if (!chan->ops->recv(chan, skb))
- return 0;
+ return;
drop:
kfree_skb(skb);
-
- return 0;
}
static void l2cap_recv_frame(struct l2cap_conn *conn, struct sk_buff *skb)