diff options
author | Michal Nazarewicz <mina86@mina86.com> | 2014-06-13 15:38:05 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-07-09 11:14:02 -0700 |
commit | 8bee745a7a6009b75edbdec0ffa0cc949dacff00 (patch) | |
tree | 528fe97d8175660abf0c44f120d3aa19969e51df /tools | |
parent | 9c252e3881a4b8dae3555b826cb6cf915fd00d09 (diff) | |
download | linux-3.10-8bee745a7a6009b75edbdec0ffa0cc949dacff00.tar.gz linux-3.10-8bee745a7a6009b75edbdec0ffa0cc949dacff00.tar.bz2 linux-3.10-8bee745a7a6009b75edbdec0ffa0cc949dacff00.zip |
tools: ffs-test: fix header values endianess
commit f35f71244da6e51db4e1f2c7e318581f498ececf upstream.
It appears that no one ever run ffs-test on a big-endian machine,
since it used cpu-endianess for fs_count and hs_count fields which
should be in little-endian format. Fix by wrapping the numbers in
cpu_to_le32.
Signed-off-by: Michal Nazarewicz <mina86@mina86.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/usb/ffs-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/usb/ffs-test.c b/tools/usb/ffs-test.c index fe1e66b6ef4..a87e99f37c5 100644 --- a/tools/usb/ffs-test.c +++ b/tools/usb/ffs-test.c @@ -116,8 +116,8 @@ static const struct { .header = { .magic = cpu_to_le32(FUNCTIONFS_DESCRIPTORS_MAGIC), .length = cpu_to_le32(sizeof descriptors), - .fs_count = 3, - .hs_count = 3, + .fs_count = cpu_to_le32(3), + .hs_count = cpu_to_le32(3), }, .fs_descs = { .intf = { |