Commit 62749a05 authored by Alex Elder's avatar Alex Elder Committed by Greg Kroah-Hartman

greybus: fix an error message

The error message printed by gb_operation_sync() if the operation
fails is wrong.  Fix it.
Signed-off-by: default avatarAlex Elder <elder@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent c25572ca
......@@ -939,7 +939,7 @@ int gb_operation_sync(struct gb_connection *connection, int type,
ret = gb_operation_request_send_sync(operation);
if (ret)
pr_err("version operation failed (%d)\n", ret);
pr_err("synchronous operation failed (%d)\n", ret);
else
if (response_size)
memcpy(response, operation->response->payload,
......
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