Commit e51eafeb authored by Bryan O'Donoghue's avatar Bryan O'Donoghue Committed by Greg Kroah-Hartman

greybus: loopback: fix 64bit printf format error

Last patchset missed compilation on 64 bit contained warning.
Signed-off-by: default avatarBryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent 52af141b
...@@ -34,7 +34,7 @@ struct gb_loopback { ...@@ -34,7 +34,7 @@ struct gb_loopback {
int type; int type;
u32 size; u32 size;
u32 size_max; size_t size_max;
int ms_wait; int ms_wait;
struct gb_loopback_stats latency; struct gb_loopback_stats latency;
...@@ -254,7 +254,7 @@ static int gb_loopback_request_recv(u8 type, struct gb_operation *operation) ...@@ -254,7 +254,7 @@ static int gb_loopback_request_recv(u8 type, struct gb_operation *operation)
struct gb_loopback *gb = connection->private; struct gb_loopback *gb = connection->private;
struct gb_loopback_transfer_request *request; struct gb_loopback_transfer_request *request;
struct gb_loopback_transfer_response *response; struct gb_loopback_transfer_response *response;
u32 len; size_t len;
/* By convention, the AP initiates the version operation */ /* By convention, the AP initiates the version operation */
switch (type) { switch (type) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment