diff options
author | Arnaud Patard <arnaud.patard@rtp-net.org> | 2006-09-28 15:29:37 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-28 18:03:12 -0700 |
commit | 860e13b5c591f1040b76fff57a6a3d6ca9633983 (patch) | |
tree | cd6dd159aeb87fe3a7796293e5054f6656758ea3 /net/bluetooth | |
parent | 37e97b4ef0d18b77a45a4714154daf3499206654 (diff) | |
download | linux-3.10-860e13b5c591f1040b76fff57a6a3d6ca9633983.tar.gz linux-3.10-860e13b5c591f1040b76fff57a6a3d6ca9633983.tar.bz2 linux-3.10-860e13b5c591f1040b76fff57a6a3d6ca9633983.zip |
[Bluetooth]: Fix section mismatch of bt_sysfs_cleanup()
The bt_sysfs_cleanup() is marked with __exit attribute, but it will
be called from an __init function in the error case. So the __exit
attribute must be removed.
Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/hci_sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c index a5c4804b77f..989b22d9042 100644 --- a/net/bluetooth/hci_sysfs.c +++ b/net/bluetooth/hci_sysfs.c @@ -348,7 +348,7 @@ int __init bt_sysfs_init(void) return 0; } -void __exit bt_sysfs_cleanup(void) +void bt_sysfs_cleanup(void) { class_destroy(bt_class); |