From 431ac89881eaed4c44f2204736ba5debe2d29a33 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 4 Jul 2006 13:36:44 +0000 Subject: Add Inquiry Result with RSSI support for another Broadcom dongle --- hcid/device.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/hcid/device.c b/hcid/device.c index 3c0d1384..c515b2bc 100644 --- a/hcid/device.c +++ b/hcid/device.c @@ -149,9 +149,12 @@ static inline uint8_t get_inquiry_mode(struct hci_dev *dev) if (dev->features[3] & LMP_RSSI_INQ) return 1; - if (dev->manufacturer == 15 && - dev->hci_rev == 0x09 && dev->lmp_subver == 0x6963) - return 1; + if (dev->manufacturer == 15) { + if (dev->hci_rev == 0x03 && dev->lmp_subver == 0x6963) + return 1; + if (dev->hci_rev == 0x09 && dev->lmp_subver == 0x6963) + return 1; + } if (dev->manufacturer == 31 && dev->hci_rev == 0x2005 && dev->lmp_subver == 0x1805) -- cgit