diff options
author | Prasanna Karthik <mkarthi3@visteon.com> | 2015-11-19 12:05:35 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-11-19 17:50:33 +0100 |
commit | 9a54421018d76c50c2fa82f88dffbfa6af0383d6 (patch) | |
tree | ff438bbb083cb658dc8c74ff1fc049be3b6a64b7 /net/bluetooth | |
parent | 74b93e9f4ee0ae9292730de1a1e7d919c59c8ad2 (diff) | |
download | linux-9a54421018d76c50c2fa82f88dffbfa6af0383d6.tar.gz linux-9a54421018d76c50c2fa82f88dffbfa6af0383d6.tar.bz2 linux-9a54421018d76c50c2fa82f88dffbfa6af0383d6.zip |
Bluetooth: remove unneeded variable in l2cap_stream_rx
Remove unneeded variable used to store return value.
Error reported by coccicheck.
Signed-off-by: Prasanna Karthik <mkarthi3@visteon.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/l2cap_core.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index 139da8106b04..39a5149f3010 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -6538,8 +6538,6 @@ static int l2cap_rx(struct l2cap_chan *chan, struct l2cap_ctrl *control, static int l2cap_stream_rx(struct l2cap_chan *chan, struct l2cap_ctrl *control, struct sk_buff *skb) { - int err = 0; - BT_DBG("chan %p, control %p, skb %p, state %d", chan, control, skb, chan->rx_state); @@ -6570,7 +6568,7 @@ static int l2cap_stream_rx(struct l2cap_chan *chan, struct l2cap_ctrl *control, chan->last_acked_seq = control->txseq; chan->expected_tx_seq = __next_seq(chan, control->txseq); - return err; + return 0; } static int l2cap_data_rcv(struct l2cap_chan *chan, struct sk_buff *skb) |