dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Anand Gadiyar 2011-02-22 12:43:26 +05:30 committed by Gustavo F. Padovan
parent b7440a14f2
commit 0ed54dad52
1 changed files with 1 additions and 3 deletions

View File

@ -550,10 +550,8 @@ static int __init bt_init(void)
goto error;
err = l2cap_init();
if (err < 0) {
hci_sock_cleanup();
if (err < 0)
goto sock_err;
}
err = sco_init();
if (err < 0) {