projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
583d233
)
greybus: fix a bug in gb_operation_sync()
author
Alex Elder
<elder@linaro.org>
Tue, 2 Dec 2014 23:03:51 +0000
(17:03 -0600)
committer
Greg Kroah-Hartman
<greg@kroah.com>
Tue, 2 Dec 2014 23:22:22 +0000
(15:22 -0800)
The memcpy of request data into the request payload was
copying the data into the wrong location. Fix that.
Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
drivers/staging/greybus/operation.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/staging/greybus/operation.c
b/drivers/staging/greybus/operation.c
index 1409d31f48c0f94e98a34630aebad3392beeb363..d3ba65849f2bfa06c47d97c58b8733aaa37b76c8 100644
(file)
--- a/
drivers/staging/greybus/operation.c
+++ b/
drivers/staging/greybus/operation.c
@@
-935,7
+935,7
@@
int gb_operation_sync(struct gb_connection *connection, int type,
return -ENOMEM;
if (request_size)
- memcpy(
&
operation->request->payload, request, request_size);
+ memcpy(operation->request->payload, request, request_size);
/* Synchronous operation--no callback */
ret = gb_operation_request_send(operation, NULL);