From: Andrei Emeltchenko Date: Fri, 9 Mar 2012 09:46:49 +0000 (+0200) Subject: Bluetooth: Correct type for hdev lmp_subver X-Git-Tag: upstream/snapshot3+hdmi~7329^2~3^2~18^2^2~116 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d69230c4381a5abc7286a8dfc893268e14e6ead;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 Signed-off-by: Gustavo F. Padovan --- diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index db1c5df..53e8eb2 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;