diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2013-10-05 20:47:42 +0200 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2013-10-06 10:21:59 +0200 |
commit | 7c13823d5b6b7cf06adeb5d56d2435fc0d97383f (patch) | |
tree | 549a702705d9489ce704859ff10f72c5ec1d7587 | |
parent | Bluetooth: Remove useless external function to count controllers (diff) | |
download | linux-7c13823d5b6b7cf06adeb5d56d2435fc0d97383f.tar.xz linux-7c13823d5b6b7cf06adeb5d56d2435fc0d97383f.zip |
Bluetooth: Add constants for AMP controller type
Add the constants for BR/EDR and 802.11 AMP controller types.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
-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 e8bba05686d1..8e3076ebb8ad 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -66,6 +66,10 @@ /* First BR/EDR Controller shall have ID = 0 */ #define HCI_BREDR_ID 0 +/* AMP controller types */ +#define AMP_TYPE_BREDR 0x00 +#define AMP_TYPE_80211 0x01 + /* AMP controller status */ #define AMP_CTRL_POWERED_DOWN 0x00 #define AMP_CTRL_BLUETOOTH_ONLY 0x01 |