diff options
author | Brian Gix <bgix@codeaurora.org> | 2011-11-16 22:53:12 +0100 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-11-21 17:44:48 +0100 |
commit | c768708a9b34979425ca54734910276250cde405 (patch) | |
tree | a88b3830adaa8127a75a6f1d4829dc07941d09bf /include | |
parent | Bluetooth: Fix some checkpatch.pl errors and warnings (diff) | |
download | linux-c768708a9b34979425ca54734910276250cde405.tar.xz linux-c768708a9b34979425ca54734910276250cde405.zip |
Bluetooth: Add MGMT event for Passkey Entry
Signed-off-by: Brian Gix <bgix@codeaurora.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/bluetooth/mgmt.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h index 139610e4341e..3b6880690a78 100644 --- a/include/net/bluetooth/mgmt.h +++ b/include/net/bluetooth/mgmt.h @@ -358,3 +358,8 @@ struct mgmt_ev_device_blocked { struct mgmt_ev_device_unblocked { bdaddr_t bdaddr; } __packed; + +#define MGMT_EV_USER_PASSKEY_REQUEST 0x0017 +struct mgmt_ev_user_passkey_request { + bdaddr_t bdaddr; +} __packed; |