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:
7a57479
)
greybus: fix error message on parse of cport descriptor size
author
Matt Porter
<mporter@linaro.org>
Wed, 1 Oct 2014 19:09:01 +0000
(15:09 -0400)
committer
Greg Kroah-Hartman
<greg@kroah.com>
Wed, 1 Oct 2014 19:16:30 +0000
(12:16 -0700)
Fix a simple cut and paste error that was reporting a serial
number header size error rather than a cport descriptor size
error.
Signed-off-by: Matt Porter <mporter@linaro.org>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
drivers/staging/greybus/core.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/staging/greybus/core.c
b/drivers/staging/greybus/core.c
index f8ba49cea0b93e3897f052c16c6c8865eb200383..c065beb2f9ab8328eb94c754df3b12e29676c3c7 100644
(file)
--- a/
drivers/staging/greybus/core.c
+++ b/
drivers/staging/greybus/core.c
@@
-303,7
+303,7
@@
static int create_cport(struct greybus_module *gmod,
if (desc_size != sizeof(*cport)) {
dev_err(gmod->dev.parent,
- "invalid
serial number heade
r size %zu\n", desc_size);
+ "invalid
cport descripto
r size %zu\n", desc_size);
return -EINVAL;
}