summaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/hci_core.h
diff options
context:
space:
mode:
authorDavid Herrmann2011-10-26 10:43:19 +0200
committerGustavo F. Padovan2011-11-07 20:24:41 +0100
commit59735631d24e3463f139a21255e0db94bc59081e (patch)
treecfaddbca078cbfd5af6f39802a183b6d8b1801d6 /include/net/bluetooth/hci_core.h
parentBluetooth: Ignore hci_unregister_dev return value (diff)
downloadkernel-qcow2-linux-59735631d24e3463f139a21255e0db94bc59081e.tar.gz
kernel-qcow2-linux-59735631d24e3463f139a21255e0db94bc59081e.tar.xz
kernel-qcow2-linux-59735631d24e3463f139a21255e0db94bc59081e.zip
Bluetooth: Make hci_unregister_dev return void
hci_unregister_dev cannot fail and always returns 0. The drivers already ignore the return value so we can safely make it return void. Signed-off-by: David Herrmann <dh.herrmann@googlemail.com> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net/bluetooth/hci_core.h')
-rw-r--r--include/net/bluetooth/hci_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
index 119b795b2850..967e18f72a38 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -554,7 +554,7 @@ struct hci_dev *hci_get_route(bdaddr_t *src, bdaddr_t *dst);
struct hci_dev *hci_alloc_dev(void);
void hci_free_dev(struct hci_dev *hdev);
int hci_register_dev(struct hci_dev *hdev);
-int hci_unregister_dev(struct hci_dev *hdev);
+void hci_unregister_dev(struct hci_dev *hdev);
int hci_suspend_dev(struct hci_dev *hdev);
int hci_resume_dev(struct hci_dev *hdev);
int hci_dev_open(__u16 dev);