diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2015-01-02 23:35:19 -0800 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2015-01-03 22:31:09 +0200 |
commit | 043ec9bf7b9d7cdce84d2e8d3df9b9eb520d929e (patch) | |
tree | 4b2c9f738009ca612e1817f4d5067f717bc0935a /include/net/bluetooth/hci.h | |
parent | 04422da990b33bf814944a3dd5d49c920eae4f7b (diff) | |
download | linux-043ec9bf7b9d7cdce84d2e8d3df9b9eb520d929e.tar.gz linux-043ec9bf7b9d7cdce84d2e8d3df9b9eb520d929e.tar.bz2 linux-043ec9bf7b9d7cdce84d2e8d3df9b9eb520d929e.zip |
Bluetooth: Introduce HCI_QUIRK_FIXUP_INQUIRY_MODE option
The HCI_QUIRK_FIXUP_INQUIRY_MODE option allows to force Inquiry Result
with RSSI setting on controllers that do not indicate support for it,
but where it is known to be fully functional.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'include/net/bluetooth/hci.h')
-rw-r--r-- | include/net/bluetooth/hci.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index aee16bf5d34f..d0bca316b43b 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -102,6 +102,18 @@ enum { */ HCI_QUIRK_FIXUP_BUFFER_SIZE, + /* When this quirk is set, then a controller that does not + * indicate support for Inquiry Result with RSSI is assumed to + * support it anyway. Some early Bluetooth 1.2 controllers had + * wrongly configured local features that will require forcing + * them to enable this mode. Getting RSSI information with the + * inquiry responses is preferred since it allows for a better + * user expierence. + * + * This quirk must be set before hci_register_dev is called. + */ + HCI_QUIRK_FIXUP_INQUIRY_MODE, + /* When this quirk is set, then the HCI Read Local Supported * Commands command is not supported. In general Bluetooth 1.2 * and later controllers should support this command. However |