diff options
author | David Herrmann <dh.herrmann@googlemail.com> | 2012-01-07 09:47:22 -0500 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2012-02-13 10:01:24 -0500 |
commit | e9b9cfa1575e37cb2dbb5534aeaaa16814228887 (patch) | |
tree | 4f0a8e2a1c9b8776b1c637df081792b5dda88cd3 /drivers/bluetooth/hci_vhci.c | |
parent | 46e06531a5ae13c66f774d3cb1ad78385618a5a2 (diff) |
Bluetooth: Remove HCI-owner field
After unregistering an hci_dev object a bluetooth driver does not have
any callbacks in the hci_dev structure left over. Therefore, there is no
need to keep a reference to the module.
Previously, we needed this to protect the hci-destruct callback.
However, this callback is no longer available so we do not need this
owner field, anymore. Drivers now call hci_unregister_dev() and they
are done with the object.
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'drivers/bluetooth/hci_vhci.c')
-rw-r--r-- | drivers/bluetooth/hci_vhci.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/bluetooth/hci_vhci.c b/drivers/bluetooth/hci_vhci.c index 44a801292d62..5f305c131a0d 100644 --- a/drivers/bluetooth/hci_vhci.c +++ b/drivers/bluetooth/hci_vhci.c | |||
@@ -244,8 +244,6 @@ static int vhci_open(struct inode *inode, struct file *file) | |||
244 | hdev->flush = vhci_flush; | 244 | hdev->flush = vhci_flush; |
245 | hdev->send = vhci_send_frame; | 245 | hdev->send = vhci_send_frame; |
246 | 246 | ||
247 | hdev->owner = THIS_MODULE; | ||
248 | |||
249 | if (hci_register_dev(hdev) < 0) { | 247 | if (hci_register_dev(hdev) < 0) { |
250 | BT_ERR("Can't register HCI device"); | 248 | BT_ERR("Can't register HCI device"); |
251 | kfree(data); | 249 | kfree(data); |