diff options
author | David S. Miller <davem@davemloft.net> | 2015-03-02 14:47:12 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-02 14:47:12 -0500 |
commit | 70c836a4d15f12aa50195937083b30a6945c2556 (patch) | |
tree | f76867215487fd7626acae395b412056eb8fde74 /include/net/bluetooth/mgmt.h | |
parent | b4844353c0577bef6db54e5b276ede1acbed5b3d (diff) | |
parent | c91799c50a14137ecee6d60d2f1d9ab8bc895e52 (diff) |
Merge branch 'for-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next
Johan Hedberg says:
====================
pull request: bluetooth-next 2015-03-02
Here's the first bluetooth-next pull request targeting the 4.1 kernel:
- ieee802154/6lowpan cleanups
- SCO routing to host interface support for the btmrvl driver
- AMP code cleanups
- Fixes to AMP HCI init sequence
- Refactoring of the HCI callback mechanism
- Added shutdown routine for Intel controllers in the btusb driver
- New config option to enable/disable Bluetooth debugfs information
- Fix for early data reception on L2CAP fixed channels
Please let me know if there are any issues pulling. Thanks.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/bluetooth/mgmt.h')
-rw-r--r-- | include/net/bluetooth/mgmt.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h index e218a30f2061..fe8eef00e9ca 100644 --- a/include/net/bluetooth/mgmt.h +++ b/include/net/bluetooth/mgmt.h | |||
@@ -647,9 +647,14 @@ struct mgmt_ev_new_irk { | |||
647 | struct mgmt_irk_info irk; | 647 | struct mgmt_irk_info irk; |
648 | } __packed; | 648 | } __packed; |
649 | 649 | ||
650 | #define MGMT_CSRK_LOCAL_UNAUTHENTICATED 0x00 | ||
651 | #define MGMT_CSRK_REMOTE_UNAUTHENTICATED 0x01 | ||
652 | #define MGMT_CSRK_LOCAL_AUTHENTICATED 0x02 | ||
653 | #define MGMT_CSRK_REMOTE_AUTHENTICATED 0x03 | ||
654 | |||
650 | struct mgmt_csrk_info { | 655 | struct mgmt_csrk_info { |
651 | struct mgmt_addr_info addr; | 656 | struct mgmt_addr_info addr; |
652 | __u8 master; | 657 | __u8 type; |
653 | __u8 val[16]; | 658 | __u8 val[16]; |
654 | } __packed; | 659 | } __packed; |
655 | 660 | ||