2012-03-09 09:46:49

by Andrei Emeltchenko

[permalink] [raw]
Subject: [PATCH] Bluetooth: Correct type for hdev lmp_subver

From: Andrei Emeltchenko <[email protected]>

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 <[email protected]>
---
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 5a90317..4af976c 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -177,7 +177,7 @@ struct hci_dev {
__u16 hci_rev;
__u8 lmp_ver;
__u16 manufacturer;
- __le16 lmp_subver;
+ __u16 lmp_subver;
__u16 voice_setting;
__u8 io_capability;

--
1.7.9



2012-03-09 12:37:30

by Gustavo Padovan

[permalink] [raw]
Subject: Re: [PATCH] Bluetooth: Correct type for hdev lmp_subver

Hi Andrei,

* Andrei Emeltchenko <[email protected]> [2012-03-09 11:46:49 +0200]:

> From: Andrei Emeltchenko <[email protected]>
>
> 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 <[email protected]>
> ---
> include/net/bluetooth/hci_core.h | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)

Applied, thanks.

Gustavo