diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2012-02-18 07:49:58 -0500 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2012-02-19 07:04:41 -0500 |
commit | 3c6b764020d19b0993fe67f938b4b08f25c9bdd9 (patch) | |
tree | c193651035bd382c23c4eef9473f14e0da61fee0 | |
parent | 5e0452c00a2e4b04ec1482248c897dacf106f1df (diff) |
Bluetooth: mgmt: Change ordering of cmd_status paramters
In accordance to the latest mgmt API specification the opcode comes
first and then the status.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r-- | include/net/bluetooth/mgmt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h index ad54b5fd634c..36e68b4551af 100644 --- a/include/net/bluetooth/mgmt.h +++ b/include/net/bluetooth/mgmt.h | |||
@@ -318,8 +318,8 @@ struct mgmt_ev_cmd_complete { | |||
318 | 318 | ||
319 | #define MGMT_EV_CMD_STATUS 0x0002 | 319 | #define MGMT_EV_CMD_STATUS 0x0002 |
320 | struct mgmt_ev_cmd_status { | 320 | struct mgmt_ev_cmd_status { |
321 | __u8 status; | ||
322 | __le16 opcode; | 321 | __le16 opcode; |
322 | __u8 status; | ||
323 | } __packed; | 323 | } __packed; |
324 | 324 | ||
325 | #define MGMT_EV_CONTROLLER_ERROR 0x0003 | 325 | #define MGMT_EV_CONTROLLER_ERROR 0x0003 |