diff options
author | Szymon Janc <szymon.janc@tieto.com> | 2011-02-17 14:16:33 +0100 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-02-17 11:29:42 -0300 |
commit | 0786f8b7777721c0d3d5dd691692eaee696e94e1 (patch) | |
tree | b53b904ea85aa42f76004a72b35fd691ae033853 /net/bluetooth | |
parent | 7235975383785276bdcfc13dd73cc87739cd25d0 (diff) | |
download | linux-0786f8b7777721c0d3d5dd691692eaee696e94e1.tar.gz linux-0786f8b7777721c0d3d5dd691692eaee696e94e1.tar.bz2 linux-0786f8b7777721c0d3d5dd691692eaee696e94e1.zip |
Bluetooth: Clean up hci_sniff_subrate_evt function
Signed-off-by: Szymon Janc <szymon.janc@tieto.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/hci_event.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 09cb29e8713a..1741936ddacf 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -2242,17 +2242,8 @@ static inline void hci_sync_conn_changed_evt(struct hci_dev *hdev, struct sk_buf static inline void hci_sniff_subrate_evt(struct hci_dev *hdev, struct sk_buff *skb) { struct hci_ev_sniff_subrate *ev = (void *) skb->data; - struct hci_conn *conn; BT_DBG("%s status %d", hdev->name, ev->status); - - hci_dev_lock(hdev); - - conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle)); - if (conn) { - } - - hci_dev_unlock(hdev); } static inline void hci_extended_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb) |