From: Marcel Holtmann Date: Mon, 20 Apr 2009 05:09:16 +0000 (+0200) Subject: Bluetooth: Remove unnecessary variable initialization X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=44d0e48e8a1fa174edf11e03dc70bd6a146b2a40;p=linux.git Bluetooth: Remove unnecessary variable initialization The initial value of err is not used until it is set to -ENOMEM. So just remove the initialization completely. Based on a patch from Gustavo F. Padovan Signed-off-by: Marcel Holtmann --- diff --git a/net/bluetooth/l2cap.c b/net/bluetooth/l2cap.c index c0c091533bd0a..77e6715d78985 100644 --- a/net/bluetooth/l2cap.c +++ b/net/bluetooth/l2cap.c @@ -844,7 +844,7 @@ static int l2cap_do_connect(struct sock *sk) struct hci_conn *hcon; struct hci_dev *hdev; __u8 auth_type; - int err = 0; + int err; BT_DBG("%s -> %s psm 0x%2.2x", batostr(src), batostr(dst), l2cap_pi(sk)->psm);