]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
Bluetooth: Fix coding style issues in mgmt code
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>
Wed, 22 Feb 2012 11:21:16 +0000 (13:21 +0200)
committerJohan Hedberg <johan.hedberg@intel.com>
Thu, 23 Feb 2012 11:06:58 +0000 (13:06 +0200)
In this case we need to use braces in both branches.

Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
net/bluetooth/mgmt.c

index 3f4c50eebbeae9de32e4b47f7b051cceabaedd76..9fb44900f7d60afcd9dcfb81e50f77bb60112439 100644 (file)
@@ -952,9 +952,9 @@ static int set_connectable(struct sock *sk, u16 index, void *data, u16 len)
                if (!!cp->val != test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
                        changed = true;
 
-               if (cp->val)
+               if (cp->val) {
                        set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
-               else {
+               else {
                        clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
                        clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
                }
@@ -987,9 +987,9 @@ static int set_connectable(struct sock *sk, u16 index, void *data, u16 len)
                goto failed;
        }
 
-       if (cp->val)
+       if (cp->val) {
                scan = SCAN_PAGE;
-       else {
+       else {
                scan = 0;
 
                if (test_bit(HCI_ISCAN, &hdev->flags) &&