diff options
author | Andrei Emeltchenko <andrei.emeltchenko@intel.com> | 2012-03-09 11:46:49 +0200 |
---|---|---|
committer | Gustavo Padovan <gustavo@padovan.org> | 2012-05-09 00:41:28 -0300 |
commit | 7d69230c4381a5abc7286a8dfc893268e14e6ead (patch) | |
tree | 4eb2046f211bebabc163ae11a972b6c5f07fa7c8 /include/net | |
parent | e46668819c1bd5930720a7e020e2a45291f9de4f (diff) | |
download | linux-7d69230c4381a5abc7286a8dfc893268e14e6ead.tar.bz2 |
Bluetooth: Correct type for hdev lmp_subver
Keep lmp_subver in host byte order. We have following conversion
in hci_cc_read_local_version:
hdev->lmp_subver = __le16_to_cpu(rp->lmp_subver);
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/bluetooth/hci_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index db1c5df45224..53e8eb2f0a2e 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h @@ -155,7 +155,7 @@ struct hci_dev { __u16 hci_rev; __u8 lmp_ver; __u16 manufacturer; - __le16 lmp_subver; + __u16 lmp_subver; __u16 voice_setting; __u8 io_capability; |