Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
39890072
Commit
39890072
authored
Aug 29, 2008
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bbc_envctrl: Fix build errors from bbc_i2c OF conversion.
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
ae05f87e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
drivers/sbus/char/bbc_envctrl.c
drivers/sbus/char/bbc_envctrl.c
+3
-3
No files found.
drivers/sbus/char/bbc_envctrl.c
View file @
39890072
...
@@ -451,7 +451,7 @@ static void attach_one_temp(struct bbc_i2c_bus *bp, struct of_device *op,
...
@@ -451,7 +451,7 @@ static void attach_one_temp(struct bbc_i2c_bus *bp, struct of_device *op,
if
(
!
tp
)
if
(
!
tp
)
return
;
return
;
tp
->
client
=
bbc_i2c_attach
(
op
);
tp
->
client
=
bbc_i2c_attach
(
bp
,
op
);
if
(
!
tp
->
client
)
{
if
(
!
tp
->
client
)
{
kfree
(
tp
);
kfree
(
tp
);
return
;
return
;
...
@@ -496,7 +496,7 @@ static void attach_one_fan(struct bbc_i2c_bus *bp, struct of_device *op,
...
@@ -496,7 +496,7 @@ static void attach_one_fan(struct bbc_i2c_bus *bp, struct of_device *op,
if
(
!
fp
)
if
(
!
fp
)
return
;
return
;
fp
->
client
=
bbc_i2c_attach
(
op
);
fp
->
client
=
bbc_i2c_attach
(
bp
,
op
);
if
(
!
fp
->
client
)
{
if
(
!
fp
->
client
)
{
kfree
(
fp
);
kfree
(
fp
);
return
;
return
;
...
@@ -529,7 +529,7 @@ int bbc_envctrl_init(struct bbc_i2c_bus *bp)
...
@@ -529,7 +529,7 @@ int bbc_envctrl_init(struct bbc_i2c_bus *bp)
int
fan_index
=
0
;
int
fan_index
=
0
;
int
devidx
=
0
;
int
devidx
=
0
;
while
((
op
=
bbc_i2c_getdev
(
devidx
++
))
!=
NULL
)
{
while
((
op
=
bbc_i2c_getdev
(
bp
,
devidx
++
))
!=
NULL
)
{
if
(
!
strcmp
(
op
->
node
->
name
,
"temperature"
))
if
(
!
strcmp
(
op
->
node
->
name
,
"temperature"
))
attach_one_temp
(
bp
,
op
,
temp_index
++
);
attach_one_temp
(
bp
,
op
,
temp_index
++
);
if
(
!
strcmp
(
op
->
node
->
name
,
"fan-control"
))
if
(
!
strcmp
(
op
->
node
->
name
,
"fan-control"
))
...
...
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