diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2011-11-12 10:58:22 +0100 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-11-16 19:32:00 +0100 |
commit | 450dfdafbcfbf19e39481d0e4737a832b991333a (patch) | |
tree | f94833b7b2ea9d96620a8320daf41ee07b4b40ff /include | |
parent | Bluetooth: Add missing cmd_complete for mgmt_load_link_keys (diff) | |
download | linux-450dfdafbcfbf19e39481d0e4737a832b991333a.tar.xz linux-450dfdafbcfbf19e39481d0e4737a832b991333a.zip |
Bluetooth: Pass all message parameters to mgmt_start_discovery
The mgmt_start_discovery command contains the type of discovery that
should be started so this should be passed to the start_discovery
function. This patch doesn't yet add any action depending on the type of
the requested discovery.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/bluetooth/mgmt.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h index bd6995d69931..2e501820f728 100644 --- a/include/net/bluetooth/mgmt.h +++ b/include/net/bluetooth/mgmt.h @@ -232,6 +232,9 @@ struct mgmt_cp_remove_remote_oob_data { } __packed; #define MGMT_OP_START_DISCOVERY 0x001B +struct mgmt_cp_start_discovery { + __u8 type; +} __packed; #define MGMT_OP_STOP_DISCOVERY 0x001C |