diff options
author | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-04-04 21:00:55 +0200 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-04-13 17:19:58 +0200 |
commit | c916fbe45c1f30417fa28e62cbbfae295a3f315c (patch) | |
tree | 60d8e1b804ac43c5dc83fe3699c412ad0280cf8e | |
parent | Bluetooth: Remove some sk references from l2cap_core.c (diff) | |
download | linux-c916fbe45c1f30417fa28e62cbbfae295a3f315c.tar.xz linux-c916fbe45c1f30417fa28e62cbbfae295a3f315c.zip |
Bluetooth: Remove unneeded uninitialized_vars()
That was unnecessary use of it.
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
-rw-r--r-- | net/bluetooth/l2cap_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index 0edfa658090a..5fc852a9ae59 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -623,7 +623,7 @@ static struct sock *l2cap_get_sock_by_scid(int state, __le16 cid, bdaddr_t *src) static void l2cap_le_conn_ready(struct l2cap_conn *conn) { - struct sock *parent, *uninitialized_var(sk); + struct sock *parent, *sk; struct l2cap_chan *chan; BT_DBG(""); |