Fix size field of arpc message request by using the header size and not
the pointer size.

Signed-off-by: Rui Miguel Silva <rmf...@gmail.com>
---
 drivers/staging/greybus/es2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/greybus/es2.c b/drivers/staging/greybus/es2.c
index 8eabc71..d7fd4a0 100644
--- a/drivers/staging/greybus/es2.c
+++ b/drivers/staging/greybus/es2.c
@@ -1033,7 +1033,7 @@ static struct arpc *arpc_alloc(void *payload, u16 size, 
u8 type)
                goto err_free_req;
 
        rpc->req->type = type;
-       rpc->req->size = cpu_to_le16(sizeof(rpc->req) + size);
+       rpc->req->size = cpu_to_le16(sizeof(*rpc->req) + size);
        memcpy(rpc->req->data, payload, size);
 
        init_completion(&rpc->response_received);
-- 
2.10.0

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to