diff options
author | Andrei Emeltchenko <andrei.emeltchenko@intel.com> | 2012-03-12 09:59:31 -0400 |
---|---|---|
committer | Gustavo Padovan <gustavo@padovan.org> | 2012-05-08 23:41:31 -0400 |
commit | 739f43e860748f0e86034512d65ca480581b1b35 (patch) | |
tree | cfb98b59cd227d3c5e04edb97ee5e2db1c6db710 /net/bluetooth/hci_sysfs.c | |
parent | 4fd21a88e311c03241f323f64aef643fcd5f149d (diff) |
Bluetooth: trivial: Correct types
Fix sparse warnigns below:
...
net/bluetooth/hci_sysfs.c:458:33: warning: cast to restricted __be32
net/bluetooth/hci_sysfs.c:458:47: warning: cast to restricted __be16
...
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth/hci_sysfs.c')
-rw-r--r-- | net/bluetooth/hci_sysfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c index 60b93d8219ef..937f3187eafa 100644 --- a/net/bluetooth/hci_sysfs.c +++ b/net/bluetooth/hci_sysfs.c | |||
@@ -444,8 +444,8 @@ static const struct file_operations blacklist_fops = { | |||
444 | 444 | ||
445 | static void print_bt_uuid(struct seq_file *f, u8 *uuid) | 445 | static void print_bt_uuid(struct seq_file *f, u8 *uuid) |
446 | { | 446 | { |
447 | u32 data0, data4; | 447 | __be32 data0, data4; |
448 | u16 data1, data2, data3, data5; | 448 | __be16 data1, data2, data3, data5; |
449 | 449 | ||
450 | memcpy(&data0, &uuid[0], 4); | 450 | memcpy(&data0, &uuid[0], 4); |
451 | memcpy(&data1, &uuid[4], 2); | 451 | memcpy(&data1, &uuid[4], 2); |