Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
a1dc62b0
Commit
a1dc62b0
authored
Sep 13, 2014
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
greybus: core: verify major/minor number of greybus protocol
parent
543b8ed2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
drivers/staging/greybus/core.c
drivers/staging/greybus/core.c
+9
-1
No files found.
drivers/staging/greybus/core.c
View file @
a1dc62b0
...
...
@@ -385,7 +385,15 @@ struct greybus_device *greybus_new_module(struct device *parent,
version_major
=
manifest
->
header
.
version_major
;
version_minor
=
manifest
->
header
.
version_minor
;
// FIXME - check version major/minor here!
/* Validate major/minor number */
if
((
version_major
!=
GREYBUS_VERSION_MAJOR
)
||
(
version_minor
!=
GREYBUS_VERSION_MINOR
))
{
dev_err
(
parent
,
"Invalid greybus versions, expected %d.%d, got %d.%d
\n
"
,
GREYBUS_VERSION_MAJOR
,
GREYBUS_VERSION_MINOR
,
version_major
,
version_minor
);
goto
error
;
}
size
-=
sizeof
(
manifest
->
header
);
data
+=
sizeof
(
manifest
->
header
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment