Bluetooth: Remove __hci_dev_put/hold
authorDavid Herrmann <dh.herrmann@googlemail.com>
Sat, 7 Jan 2012 14:47:24 +0000 (15:47 +0100)
committerJohan Hedberg <johan.hedberg@intel.com>
Mon, 13 Feb 2012 15:01:24 +0000 (17:01 +0200)
Since we remove the owner field of hci_dev hci_dev_put and __hci_dev_put
do the same so we can merge them into one function. Same for
hci_dev_hold and __hci_dev_hold.

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>
drivers/bluetooth/btusb.c
include/net/bluetooth/hci_core.h
net/bluetooth/hci_core.c

index a36888a9c2051c4366b9a1110392c1debcf38064..d7664ffc5183f9f70569b9a01b99d61da78f2ea0 100644 (file)
@@ -1079,7 +1079,7 @@ static void btusb_disconnect(struct usb_interface *intf)
 
        hdev = data->hdev;
 
-       __hci_dev_hold(hdev);
+       hci_dev_hold(hdev);
 
        usb_set_intfdata(data->intf, NULL);
 
@@ -1093,7 +1093,7 @@ static void btusb_disconnect(struct usb_interface *intf)
        else if (data->isoc)
                usb_driver_release_interface(&btusb_driver, data->isoc);
 
-       __hci_dev_put(hdev);
+       hci_dev_put(hdev);
 
        hci_free_dev(hdev);
        kfree(data);
index 4ccf3749a9a73ff6f6c3d4c9e329343cf1e00564..f9c88251fe1a1e2e3ef918c2738a72b5e94ec63e 100644 (file)
@@ -589,25 +589,17 @@ static inline void hci_conn_put(struct hci_conn *conn)
 }
 
 /* ----- HCI Devices ----- */
-static inline void __hci_dev_put(struct hci_dev *d)
+static inline void hci_dev_put(struct hci_dev *d)
 {
        put_device(&d->dev);
 }
 
-/*
- * hci_dev_put and hci_dev_hold are macros to avoid dragging all the
- * overhead of all the modular infrastructure into this header.
- */
-#define hci_dev_put(d) __hci_dev_put(d)
-
-static inline struct hci_dev *__hci_dev_hold(struct hci_dev *d)
+static inline struct hci_dev *hci_dev_hold(struct hci_dev *d)
 {
        get_device(&d->dev);
        return d;
 }
 
-#define hci_dev_hold(d) __hci_dev_hold(d)
-
 #define hci_dev_lock(d)                mutex_lock(&d->lock)
 #define hci_dev_unlock(d)      mutex_unlock(&d->lock)
 
index f5fba65a9e593d50c35165a0db46a66045b354a5..a3113f8c1f93b92a586cf379eef6ea0e99957db0 100644 (file)
@@ -1654,7 +1654,7 @@ int hci_register_dev(struct hci_dev *hdev)
        schedule_work(&hdev->power_on);
 
        hci_notify(hdev, HCI_DEV_REG);
-       __hci_dev_hold(hdev);
+       hci_dev_hold(hdev);
 
        return id;
 
@@ -1717,7 +1717,7 @@ void hci_unregister_dev(struct hci_dev *hdev)
        hci_adv_entries_clear(hdev);
        hci_dev_unlock(hdev);
 
-       __hci_dev_put(hdev);
+       hci_dev_put(hdev);
 }
 EXPORT_SYMBOL(hci_unregister_dev);