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
nexedi
linux
Commits
b64962e9
Commit
b64962e9
authored
Jun 10, 2003
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] I2C: fix some errors found by sparse in include/linux/i2c.h
parent
e7aba607
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
include/linux/i2c.h
include/linux/i2c.h
+2
-2
No files found.
include/linux/i2c.h
View file @
b64962e9
...
...
@@ -176,7 +176,7 @@ static inline void *i2c_get_clientdata (struct i2c_client *dev)
static
inline
void
i2c_set_clientdata
(
struct
i2c_client
*
dev
,
void
*
data
)
{
return
dev_set_drvdata
(
&
dev
->
dev
,
data
);
dev_set_drvdata
(
&
dev
->
dev
,
data
);
}
#define I2C_DEVNAME(str) .dev = { .name = str }
...
...
@@ -261,7 +261,7 @@ static inline void *i2c_get_adapdata (struct i2c_adapter *dev)
static
inline
void
i2c_set_adapdata
(
struct
i2c_adapter
*
dev
,
void
*
data
)
{
return
dev_set_drvdata
(
&
dev
->
dev
,
data
);
dev_set_drvdata
(
&
dev
->
dev
,
data
);
}
/*flags for the driver struct: */
...
...
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