diff options
author | Anand Gadiyar <gadiyar@ti.com> | 2011-02-22 02:13:26 -0500 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-02-25 20:36:58 -0500 |
commit | 0ed54dad52e8056f4440da723a4c117f2aef1f68 (patch) | |
tree | 9f82ee62b1cfb740d219c9cd5428974c225b0ddc /net/bluetooth/af_bluetooth.c | |
parent | b7440a14f28492bac30d7d43fd982fd210c6e971 (diff) |
Bluetooth: remove unnecessary call to hci_sock_cleanup
hci_sock_cleanup is already called after the sock_err label.
It appears that we can drop this call.
Signed-off-by: Anand Gadiyar <gadiyar@ti.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth/af_bluetooth.c')
-rw-r--r-- | net/bluetooth/af_bluetooth.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/bluetooth/af_bluetooth.c b/net/bluetooth/af_bluetooth.c index 88af9eb9aa48..8add9b499912 100644 --- a/net/bluetooth/af_bluetooth.c +++ b/net/bluetooth/af_bluetooth.c | |||
@@ -550,10 +550,8 @@ static int __init bt_init(void) | |||
550 | goto error; | 550 | goto error; |
551 | 551 | ||
552 | err = l2cap_init(); | 552 | err = l2cap_init(); |
553 | if (err < 0) { | 553 | if (err < 0) |
554 | hci_sock_cleanup(); | ||
555 | goto sock_err; | 554 | goto sock_err; |
556 | } | ||
557 | 555 | ||
558 | err = sco_init(); | 556 | err = sco_init(); |
559 | if (err < 0) { | 557 | if (err < 0) { |