diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2016-07-05 08:30:14 -0400 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2016-07-09 14:37:13 -0400 |
commit | ca8bee5dde1f02c2dbe8c8453dce27f2dfafb21c (patch) | |
tree | 79ca6c942f1c5e618ac7363edaa549466c9b1b61 /drivers/bluetooth/btusb.c | |
parent | e14dbe72033152135eb3bae212228728089d4dd9 (diff) |
Bluetooth: Rename HCI_BREDR into HCI_PRIMARY
The HCI_BREDR naming is confusing since it actually stands for Primary
Bluetooth Controller. Which is a term that has been used in the latest
standard. However from a legacy point of view there only really have
been Basic Rate (BR) and Enhanced Data Rate (EDR). Recent versions of
Bluetooth introduced Low Energy (LE) and made this terminology a little
bit confused since Dual Mode Controllers include BR/EDR and LE. To
simplify this the name HCI_PRIMARY stands for the Primary Controller
which can be a single mode or dual mode controller.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'drivers/bluetooth/btusb.c')
-rw-r--r-- | drivers/bluetooth/btusb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 880bb5546b25..f2e8fd701bf6 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c | |||
@@ -2832,7 +2832,7 @@ static int btusb_probe(struct usb_interface *intf, | |||
2832 | if (id->driver_info & BTUSB_AMP) | 2832 | if (id->driver_info & BTUSB_AMP) |
2833 | hdev->dev_type = HCI_AMP; | 2833 | hdev->dev_type = HCI_AMP; |
2834 | else | 2834 | else |
2835 | hdev->dev_type = HCI_BREDR; | 2835 | hdev->dev_type = HCI_PRIMARY; |
2836 | 2836 | ||
2837 | data->hdev = hdev; | 2837 | data->hdev = hdev; |
2838 | 2838 | ||