diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2011-11-12 04:58:22 -0500 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-11-16 13:32:00 -0500 |
commit | 450dfdafbcfbf19e39481d0e4737a832b991333a (patch) | |
tree | f94833b7b2ea9d96620a8320daf41ee07b4b40ff /include/net/bluetooth | |
parent | 0e5f875a8f4fa78edf5762d6d0a9843e1d9ae85e (diff) |
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/net/bluetooth')
-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 { | |||
232 | } __packed; | 232 | } __packed; |
233 | 233 | ||
234 | #define MGMT_OP_START_DISCOVERY 0x001B | 234 | #define MGMT_OP_START_DISCOVERY 0x001B |
235 | struct mgmt_cp_start_discovery { | ||
236 | __u8 type; | ||
237 | } __packed; | ||
235 | 238 | ||
236 | #define MGMT_OP_STOP_DISCOVERY 0x001C | 239 | #define MGMT_OP_STOP_DISCOVERY 0x001C |
237 | 240 | ||