diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-02-13 01:28:41 (GMT) |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-02-27 13:05:38 (GMT) |
commit | 943da25d95c7e8fd8c39dbf09e030f5da46f5d85 (patch) | |
tree | afa710bb2455ec43db38e205157fd6943ac6b63b /include/net/bluetooth/hci.h | |
parent | b914a250e7b390c713b36a9405a39c4c11abad80 (diff) | |
download | linux-943da25d95c7e8fd8c39dbf09e030f5da46f5d85.tar.xz |
Bluetooth: Add controller types for BR/EDR and 802.11 AMP
With the Bluetooth 3.0 specification and the introduction of alternate
MAC/PHY (AMP) support, it is required to differentiate between primary
BR/EDR controllers and 802.11 AMP controllers. So introduce a special
type inside HCI device for differentiation.
For now all AMP controllers will be treated as raw devices until an
AMP manager has been implemented.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net/bluetooth/hci.h')
-rw-r--r-- | include/net/bluetooth/hci.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index 3350a66..fc0c502 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -52,6 +52,10 @@ #define HCI_PCI 5 #define HCI_SDIO 6 +/* HCI controller types */ +#define HCI_BREDR 0x00 +#define HCI_80211 0x01 + /* HCI device quirks */ enum { HCI_QUIRK_NO_RESET, |