diff options
author | Johan Hedberg <johan.hedberg@nokia.com> | 2010-12-13 21:07:04 +0200 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2010-12-22 22:57:37 -0200 |
commit | 02d981292ad3149e8e5f37cffbccedab1a8576d8 (patch) | |
tree | c28722fc51a0650c541ce10c8c188c5876881b73 /include/net | |
parent | e41d8b4e131a41f2a3b74aaa783b16aa46376d8e (diff) | |
download | linux-3.10-02d981292ad3149e8e5f37cffbccedab1a8576d8.tar.gz linux-3.10-02d981292ad3149e8e5f37cffbccedab1a8576d8.tar.bz2 linux-3.10-02d981292ad3149e8e5f37cffbccedab1a8576d8.zip |
Bluetooth: Add read_version management command
This patch implements the initial read_version command that userspace
will use before any other management interface operations.
Signed-off-by: Johan Hedberg <johan.hedberg@nokia.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/bluetooth/mgmt.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h index 95974daa725..d353d64bfff 100644 --- a/include/net/bluetooth/mgmt.h +++ b/include/net/bluetooth/mgmt.h @@ -27,6 +27,12 @@ struct mgmt_hdr { } __packed; #define MGMT_HDR_SIZE 4 +#define MGMT_OP_READ_VERSION 0x0001 +struct mgmt_rp_read_version { + __u8 version; + __le16 revision; +} __packed; + #define MGMT_EV_CMD_COMPLETE 0x0001 struct mgmt_ev_cmd_complete { __le16 opcode; |