diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2014-07-28 08:45:31 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-07-28 10:50:52 -0400 |
commit | 204e399003174ee8ceb7606c61daaa7f4e89e794 (patch) | |
tree | e66ef603a1857519672b47052110dea67c20caf3 /net | |
parent | 6304f8fc398e4c8d2bac884ae2b4467c66620fd1 (diff) |
Bluetooth: Fix clearing HCI_PSCAN flag
This patch fixes a typo in the hci_cc_write_scan_enable() function where
we want to clear the HCI_PSCAN flag if the SCAN_PAGE bit of the HCI
command parameter was not set.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/hci_event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index ba26fbfe481a..623501ddd1b8 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c | |||
@@ -317,7 +317,7 @@ static void hci_cc_write_scan_enable(struct hci_dev *hdev, struct sk_buff *skb) | |||
317 | if (param & SCAN_PAGE) | 317 | if (param & SCAN_PAGE) |
318 | set_bit(HCI_PSCAN, &hdev->flags); | 318 | set_bit(HCI_PSCAN, &hdev->flags); |
319 | else | 319 | else |
320 | clear_bit(HCI_ISCAN, &hdev->flags); | 320 | clear_bit(HCI_PSCAN, &hdev->flags); |
321 | 321 | ||
322 | done: | 322 | done: |
323 | hci_dev_unlock(hdev); | 323 | hci_dev_unlock(hdev); |