diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2007-09-09 02:39:49 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2007-09-09 02:39:49 -0400 |
commit | 89f2783ded0a4fc98852cb9552bb27a80cd6a41a (patch) | |
tree | 3227a8f56a6a1240d620cfe3b091a34836f69437 /net | |
parent | 7c631a67601f116d303cfb98a3d964a150090e38 (diff) |
[Bluetooth] Fix parameter list for event filter command
On device initialization the event filters are cleared. In case of
clearing the filters the extra condition type shall be omitted.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/hci_core.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index 63caa414945d..18e3afc964df 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c | |||
@@ -183,6 +183,7 @@ static void hci_init_req(struct hci_dev *hdev, unsigned long opt) | |||
183 | { | 183 | { |
184 | struct sk_buff *skb; | 184 | struct sk_buff *skb; |
185 | __le16 param; | 185 | __le16 param; |
186 | __u8 flt_type; | ||
186 | 187 | ||
187 | BT_DBG("%s %ld", hdev->name, opt); | 188 | BT_DBG("%s %ld", hdev->name, opt); |
188 | 189 | ||
@@ -233,11 +234,8 @@ static void hci_init_req(struct hci_dev *hdev, unsigned long opt) | |||
233 | /* Optional initialization */ | 234 | /* Optional initialization */ |
234 | 235 | ||
235 | /* Clear Event Filters */ | 236 | /* Clear Event Filters */ |
236 | { | 237 | flt_type = HCI_FLT_CLEAR_ALL; |
237 | struct hci_cp_set_event_flt cp; | 238 | hci_send_cmd(hdev, OGF_HOST_CTL, OCF_SET_EVENT_FLT, 1, &flt_type); |
238 | cp.flt_type = HCI_FLT_CLEAR_ALL; | ||
239 | hci_send_cmd(hdev, OGF_HOST_CTL, OCF_SET_EVENT_FLT, sizeof(cp), &cp); | ||
240 | } | ||
241 | 239 | ||
242 | /* Page timeout ~20 secs */ | 240 | /* Page timeout ~20 secs */ |
243 | param = cpu_to_le16(0x8000); | 241 | param = cpu_to_le16(0x8000); |