Bluetooth: Set HCI_QUIRK_INVALID_BADDR for BCM20702A0 default address

When the Broadcom USB controller has a default address, then set the quirk
so the Bluetooth core knows that controller configuration is required.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
Marcel Holtmann 2014-07-04 16:54:39 +02:00 коммит произвёл Johan Hedberg
Родитель 4739b5b185
Коммит 849e5086b9
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -1624,9 +1624,11 @@ reset_fw:
/* The address 00:20:70:02:A0:00 indicates a BCM20702A0 controller /* The address 00:20:70:02:A0:00 indicates a BCM20702A0 controller
* with no configured address. * with no configured address.
*/ */
if (!bacmp(&bda->bdaddr, BDADDR_BCM20702A0)) if (!bacmp(&bda->bdaddr, BDADDR_BCM20702A0)) {
BT_INFO("%s: BCM: using default device address (%pMR)", BT_INFO("%s: BCM: using default device address (%pMR)",
hdev->name, &bda->bdaddr); hdev->name, &bda->bdaddr);
set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
}
kfree_skb(skb); kfree_skb(skb);