Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6810fca7 authored by Andrei Emeltchenko's avatar Andrei Emeltchenko Committed by Johan Hedberg
Browse files

Bluetooth: Make l2cap_att_channel return void



l2cap_att_channel always returns 0 which is not used.

Signed-off-by: default avatarAndrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
parent 84104b24
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -5211,7 +5211,7 @@ static void l2cap_conless_channel(struct l2cap_conn *conn, __le16 psm,
	kfree_skb(skb);
}

static inline int l2cap_att_channel(struct l2cap_conn *conn, u16 cid,
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)