diff options
author | Andrei Emeltchenko <andrei.emeltchenko@intel.com> | 2012-03-09 12:12:12 +0200 |
---|---|---|
committer | Gustavo Padovan <gustavo@padovan.org> | 2012-05-09 00:41:29 -0300 |
commit | 9a0066579270584108f1f2f97d98fe989d8117df (patch) | |
tree | aaa0f4ad4bcd1e88f1029011c2662d714ae76a29 /net | |
parent | 7d69230c4381a5abc7286a8dfc893268e14e6ead (diff) | |
download | linux-stable-9a0066579270584108f1f2f97d98fe989d8117df.tar.gz linux-stable-9a0066579270584108f1f2f97d98fe989d8117df.tar.bz2 linux-stable-9a0066579270584108f1f2f97d98fe989d8117df.zip |
Bluetooth: Correct type for ediv to __le16
Correct type warnings reported by sparse to show that this
functions takes ediv argument in __le16 format.
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/hci_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index edfd61addcec..af55ea1b6882 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -1336,7 +1336,7 @@ int hci_add_link_key(struct hci_dev *hdev, struct hci_conn *conn, int new_key, } int hci_add_ltk(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 addr_type, u8 type, - int new_key, u8 authenticated, u8 tk[16], u8 enc_size, u16 + int new_key, u8 authenticated, u8 tk[16], u8 enc_size, __le16 ediv, u8 rand[8]) { struct smp_ltk *key, *old_key; |