diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2014-03-20 08:18:14 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-03-19 23:22:07 -0700 |
commit | 39adbffe4b16285c54016d3e64471396354ae49f (patch) | |
tree | 81196bfad50006fea2eec9c9175705fdd267f6d3 /net/bluetooth/smp.c | |
parent | 40b552aa5a0bfa785bc7ddb5c2d7965b1e0bb08d (diff) | |
download | op-kernel-dev-39adbffe4b16285c54016d3e64471396354ae49f.zip op-kernel-dev-39adbffe4b16285c54016d3e64471396354ae49f.tar.gz |
Bluetooth: Fix passkey endianess in user_confirm and notify_passkey
The passkey_notify and user_confirm functions in mgmt.c were expecting
different endianess for the passkey, leading to a big endian bug and
sparse warning in recently added SMP code. This patch converts both
functions to expect host endianess and do the conversion to little
endian only when assigning to the mgmt event struct.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/smp.c')
-rw-r--r-- | net/bluetooth/smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c index 2a7ee7f..13919ff 100644 --- a/net/bluetooth/smp.c +++ b/net/bluetooth/smp.c @@ -425,7 +425,7 @@ static int tk_request(struct l2cap_conn *conn, u8 remote_oob, u8 auth, else ret = mgmt_user_passkey_notify(hcon->hdev, &hcon->dst, hcon->type, hcon->dst_type, - cpu_to_le32(passkey), 0); + passkey, 0); hci_dev_unlock(hcon->hdev); |