aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2015-03-13 05:11:03 -0400
committerJohan Hedberg <johan.hedberg@intel.com>2015-03-13 06:09:29 -0400
commitce05d603af7c9b5be66a1f3358443e20e2a2ae7a (patch)
tree095536c740a1ae211e5adb49a03124a466e4d7f4 /include
parenta358dc11d80ecaca443aa1fd2fd9d4f3425922e7 (diff)
Bluetooth: Introduce hci_dev_change_flag helper macro
Instead of manually coding change_bit on hdev->dev_flags all the time, use hci_dev_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')
-rw-r--r--include/net/bluetooth/hci_core.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
index 535b23c73c92..92b2148702e6 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -504,6 +504,7 @@ extern struct mutex hci_cb_list_lock;
504 504
505#define hci_dev_set_flag(hdev, nr) set_bit((nr), &(hdev)->dev_flags) 505#define hci_dev_set_flag(hdev, nr) set_bit((nr), &(hdev)->dev_flags)
506#define hci_dev_clear_flag(hdev, nr) clear_bit((nr), &(hdev)->dev_flags) 506#define hci_dev_clear_flag(hdev, nr) clear_bit((nr), &(hdev)->dev_flags)
507#define hci_dev_change_flag(hdev, nr) change_bit((nr), &(hdev)->dev_flags)
507#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)
508 509
509/* ----- HCI interface to upper protocols ----- */ 510/* ----- HCI interface to upper protocols ----- */