diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2015-03-13 05:11:04 -0400 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2015-03-13 06:09:31 -0400 |
commit | 516018a9c057a7c179dd6b4df917a6f5d43b3547 (patch) | |
tree | eba64aa5bbf4eef7c14058ca4fc59c37324f89c9 /include/net/bluetooth | |
parent | ce05d603af7c9b5be66a1f3358443e20e2a2ae7a (diff) |
Bluetooth: Introduce hci_dev_test_and_change_flag helper macro
Instead of manually coding test_and_change_bit on hdev->dev_flags all the
time, use hci_dev_test_and_change_flag helper macro.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'include/net/bluetooth')
-rw-r--r-- | include/net/bluetooth/hci_core.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index 92b2148702e6..cd2682c64a4c 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h | |||
@@ -507,6 +507,8 @@ extern struct mutex hci_cb_list_lock; | |||
507 | #define hci_dev_change_flag(hdev, nr) change_bit((nr), &(hdev)->dev_flags) | 507 | #define hci_dev_change_flag(hdev, nr) change_bit((nr), &(hdev)->dev_flags) |
508 | #define hci_dev_test_flag(hdev, nr) test_bit((nr), &(hdev)->dev_flags) | 508 | #define hci_dev_test_flag(hdev, nr) test_bit((nr), &(hdev)->dev_flags) |
509 | 509 | ||
510 | #define hci_dev_test_and_change_flag(hdev, nr) test_and_change_bit((nr), &(hdev)->dev_flags) | ||
511 | |||
510 | /* ----- HCI interface to upper protocols ----- */ | 512 | /* ----- HCI interface to upper protocols ----- */ |
511 | int l2cap_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr); | 513 | int l2cap_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr); |
512 | int l2cap_disconn_ind(struct hci_conn *hcon); | 514 | int l2cap_disconn_ind(struct hci_conn *hcon); |