diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2005-11-08 12:57:21 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-11-08 12:57:21 -0500 |
commit | 1ebb92521d0bc2d4ef772730d29333c06b807191 (patch) | |
tree | d480ca68fd4c7f1185e189942feef8d85edbb659 /drivers/bluetooth | |
parent | 7ef934b3b73f74aea23aa0e98affe86d7ea816a3 (diff) |
[Bluetooth]: Add endian annotations to the core
This patch adds the endian annotations to the Bluetooth core.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r-- | drivers/bluetooth/bpa10x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/bluetooth/bpa10x.c b/drivers/bluetooth/bpa10x.c index ecbeb7eaba8e..394796315adc 100644 --- a/drivers/bluetooth/bpa10x.c +++ b/drivers/bluetooth/bpa10x.c | |||
@@ -84,8 +84,8 @@ struct bpa10x_data { | |||
84 | 84 | ||
85 | struct hci_vendor_hdr { | 85 | struct hci_vendor_hdr { |
86 | __u8 type; | 86 | __u8 type; |
87 | __u16 snum; | 87 | __le16 snum; |
88 | __u16 dlen; | 88 | __le16 dlen; |
89 | } __attribute__ ((packed)); | 89 | } __attribute__ ((packed)); |
90 | 90 | ||
91 | static void bpa10x_recv_bulk(struct bpa10x_data *data, unsigned char *buf, int count) | 91 | static void bpa10x_recv_bulk(struct bpa10x_data *data, unsigned char *buf, int count) |