diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2012-02-21 10:55:47 -0500 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2012-02-21 13:04:39 -0500 |
commit | a297e97cf7228467a8c5c76216945ccf029ae2a4 (patch) | |
tree | fce106b07cb60ad970c6c4fb66ac5273c956ef3e /net/bluetooth/hci_event.c | |
parent | 0224d2fafbbed4ac0cb05d08d3adab506a398451 (diff) |
Bluetooth: Fix clearing of persistent dev_flags
Now that most flags are persistent, only the LE_SCAN flag should be
cleared after a reset.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/hci_event.c')
-rw-r--r-- | net/bluetooth/hci_event.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 5d0f92a948c2..2a5d05c05e35 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c | |||
@@ -192,9 +192,8 @@ static void hci_cc_reset(struct hci_dev *hdev, struct sk_buff *skb) | |||
192 | 192 | ||
193 | hci_req_complete(hdev, HCI_OP_RESET, status); | 193 | hci_req_complete(hdev, HCI_OP_RESET, status); |
194 | 194 | ||
195 | /* Reset all flags, except persistent ones */ | 195 | /* Reset all non-persistent flags */ |
196 | hdev->dev_flags &= BIT(HCI_MGMT) | BIT(HCI_SETUP) | BIT(HCI_AUTO_OFF) | | 196 | hdev->dev_flags &= ~(BIT(HCI_LE_SCAN)); |
197 | BIT(HCI_LINK_KEYS) | BIT(HCI_DEBUG_KEYS); | ||
198 | } | 197 | } |
199 | 198 | ||
200 | static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb) | 199 | static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb) |