summaryrefslogtreecommitdiffstats
path: root/net/bluetooth/mgmt.c
diff options
context:
space:
mode:
authorMarcel Holtmann2013-10-15 01:38:45 +0200
committerJohan Hedberg2013-10-15 10:27:17 +0200
commit8d6083fe0ab6ffbe486b5d537922fba68e872568 (patch)
treed7628e4b02421742d4c4b6c3898c112a60e859a9 /net/bluetooth/mgmt.c
parentBluetooth: Read current IAC LAP on controller setup (diff)
downloadkernel-qcow2-linux-8d6083fe0ab6ffbe486b5d537922fba68e872568.tar.gz
kernel-qcow2-linux-8d6083fe0ab6ffbe486b5d537922fba68e872568.tar.xz
kernel-qcow2-linux-8d6083fe0ab6ffbe486b5d537922fba68e872568.zip
Bluetooth: Fix minor coding style issue in set_connectable()
There is a minor coding style violation and so just fix it. No actual logic has changed. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth/mgmt.c')
-rw-r--r--net/bluetooth/mgmt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index 861e389f4b4c..c071708aac24 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -1264,14 +1264,13 @@ static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags) &&
cp->val != test_bit(HCI_PSCAN, &hdev->flags)) {
-
if (cp->val) {
scan = SCAN_PAGE;
} else {
scan = 0;
if (test_bit(HCI_ISCAN, &hdev->flags) &&
- hdev->discov_timeout > 0)
+ hdev->discov_timeout > 0)
cancel_delayed_work(&hdev->discov_off);
}