diff options
| -rw-r--r-- | hcid/device.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/hcid/device.c b/hcid/device.c index 71af2d59..73c5da75 100644 --- a/hcid/device.c +++ b/hcid/device.c @@ -179,6 +179,10 @@ static inline uint8_t get_inquiry_mode(struct hci_dev *dev)  	if (dev->features[3] & LMP_RSSI_INQ)  		return 1; +	if (dev->manufacturer == 11 && +			dev->hci_rev == 0x00 && dev->lmp_subver == 0x0757) +		return 1; +  	if (dev->manufacturer == 15) {  		if (dev->hci_rev == 0x03 && dev->lmp_subver == 0x6963)  			return 1; | 
