diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2006-07-04 13:36:44 +0000 | 
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2006-07-04 13:36:44 +0000 | 
| commit | 431ac89881eaed4c44f2204736ba5debe2d29a33 (patch) | |
| tree | 4c942a5e969143c2a23ae4bb25c2dd87ebdfed3a /hcid/device.c | |
| parent | a13cbac6d61e4696941a747b376a93bbcffda1a2 (diff) | |
Add Inquiry Result with RSSI support for another Broadcom dongle
Diffstat (limited to 'hcid/device.c')
| -rw-r--r-- | hcid/device.c | 9 | 
1 files 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) | 
