Skip to content

Commit

Permalink
Bluetooth: Introduce hci_dev_change_flag helper macro
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Marcel Holtmann authored and Johan Hedberg committed Mar 13, 2015
1 parent a358dc1 commit ce05d60
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions include/net/bluetooth/hci_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,7 @@ extern struct mutex hci_cb_list_lock;

#define hci_dev_set_flag(hdev, nr) set_bit((nr), &(hdev)->dev_flags)
#define hci_dev_clear_flag(hdev, nr) clear_bit((nr), &(hdev)->dev_flags)
#define hci_dev_change_flag(hdev, nr) change_bit((nr), &(hdev)->dev_flags)
#define hci_dev_test_flag(hdev, nr) test_bit((nr), &(hdev)->dev_flags)

/* ----- HCI interface to upper protocols ----- */
Expand Down
10 changes: 5 additions & 5 deletions net/bluetooth/mgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -1674,7 +1674,7 @@ static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
* and so no need to check HCI_LIMITED_DISCOVERABLE.
*/
if (!!cp->val != hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) {
change_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
hci_dev_change_flag(hdev, HCI_DISCOVERABLE);
changed = true;
}

Expand Down Expand Up @@ -2046,7 +2046,7 @@ static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
bool changed = false;

if (!!cp->val != hci_dev_test_flag(hdev, HCI_LINK_SECURITY)) {
change_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
hci_dev_change_flag(hdev, HCI_LINK_SECURITY);
changed = true;
}

Expand Down Expand Up @@ -2301,7 +2301,7 @@ static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
bool changed = false;

if (val != hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
change_bit(HCI_LE_ENABLED, &hdev->dev_flags);
hci_dev_change_flag(hdev, HCI_LE_ENABLED);
changed = true;
}

Expand Down Expand Up @@ -4689,7 +4689,7 @@ static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
}

if (!hdev_is_powered(hdev)) {
change_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
hci_dev_change_flag(hdev, HCI_FAST_CONNECTABLE);
err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
hdev);
new_settings(hdev, sk);
Expand Down Expand Up @@ -4789,7 +4789,7 @@ static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
}

change_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
hci_dev_change_flag(hdev, HCI_BREDR_ENABLED);

err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
if (err < 0)
Expand Down

0 comments on commit ce05d60

Please sign in to comment.