Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 327480
b: refs/heads/master
c: f7c8663
h: refs/heads/master
v: v3
  • Loading branch information
Masatake YAMATO authored and Gustavo Padovan committed Aug 6, 2012
1 parent 8a2d1d8 commit ee03052
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8c8de589cedd375934d96e073d2b9077a00f10c2
refs/heads/master: f7c8663789038c4bc71b81e3c858a35c999347a8
13 changes: 11 additions & 2 deletions trunk/net/bluetooth/hci_sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -1100,21 +1100,30 @@ int __init hci_sock_init(void)
return err;

err = bt_sock_register(BTPROTO_HCI, &hci_sock_family_ops);
if (err < 0)
if (err < 0) {
BT_ERR("HCI socket registration failed");
goto error;
}

err = bt_procfs_init(THIS_MODULE, &init_net, "hci", &hci_sk_list, NULL);
if (err < 0) {
BT_ERR("Failed to create HCI proc file");
bt_sock_unregister(BTPROTO_HCI);
goto error;
}

BT_INFO("HCI socket layer initialized");

return 0;

error:
BT_ERR("HCI socket registration failed");
proto_unregister(&hci_sk_proto);
return err;
}

void hci_sock_cleanup(void)
{
bt_procfs_cleanup(&init_net, "hci");
if (bt_sock_unregister(BTPROTO_HCI) < 0)
BT_ERR("HCI socket unregistration failed");

Expand Down

0 comments on commit ee03052

Please sign in to comment.