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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ struct gb_loopback {

	int type;
	u32 size;
	u32 size_max;
	size_t size_max;
	int ms_wait;

	struct gb_loopback_stats latency;
@@ -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_transfer_request *request;
	struct gb_loopback_transfer_response *response;
	u32 len;
	size_t len;

	/* By convention, the AP initiates the version operation */
	switch (type) {