tools: ffs-aio-example: fix header values endianess
authorRobert Baldyga <r.baldyga@samsung.com>
Wed, 25 Jun 2014 06:26:47 +0000 (08:26 +0200)
committerFelipe Balbi <balbi@ti.com>
Mon, 30 Jun 2014 17:53:27 +0000 (12:53 -0500)
We wrap numeric values of fs_count and hs_count fields in htole32,
because they should be in little-endian format.

Acked-by: Michal Nazarewicz <mina86@mina86.com>
Signed-off-by: Robert Baldyga <r.baldyga@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c
tools/usb/ffs-aio-example/simple/device_app/aio_simple.c

index 87216a0..a349a87 100644 (file)
@@ -37,8 +37,8 @@ static const struct {
        .header = {
                .magic = htole32(FUNCTIONFS_DESCRIPTORS_MAGIC),
                .length = htole32(sizeof(descriptors)),
-               .fs_count = 3,
-               .hs_count = 3,
+               .fs_count = htole32(3),
+               .hs_count = htole32(3),
        },
        .fs_descs = {
                .intf = {
index f558664..28c22cb 100644 (file)
@@ -35,8 +35,8 @@ static const struct {
        .header = {
                .magic = htole32(FUNCTIONFS_DESCRIPTORS_MAGIC),
                .length = htole32(sizeof(descriptors)),
-               .fs_count = 3,
-               .hs_count = 3,
+               .fs_count = htole32(3),
+               .hs_count = htole32(3),
        },
        .fs_descs = {
                .intf = {