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
4e2e9864
Commit
4e2e9864
authored
Sep 21, 2015
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'regulator/fix/core' into regulator-linus
parents
1f93e4a9
23c3f310
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
11 deletions
+10
-11
drivers/regulator/core.c
drivers/regulator/core.c
+10
-11
No files found.
drivers/regulator/core.c
View file @
4e2e9864
...
...
@@ -1394,6 +1394,7 @@ static int regulator_resolve_supply(struct regulator_dev *rdev)
return
0
;
r
=
regulator_dev_lookup
(
dev
,
rdev
->
supply_name
,
&
ret
);
if
(
!
r
)
{
if
(
ret
==
-
ENODEV
)
{
/*
* No supply was specified for this regulator and
...
...
@@ -1402,7 +1403,6 @@ static int regulator_resolve_supply(struct regulator_dev *rdev)
return
0
;
}
if
(
!
r
)
{
if
(
have_full_constraints
())
{
r
=
dummy_regulator_rdev
;
}
else
{
...
...
@@ -1422,10 +1422,9 @@ static int regulator_resolve_supply(struct regulator_dev *rdev)
return
ret
;
/* Cascade always-on state to supply */
if
(
_regulator_is_enabled
(
rdev
))
{
if
(
_regulator_is_enabled
(
rdev
)
&&
rdev
->
supply
)
{
ret
=
regulator_enable
(
rdev
->
supply
);
if
(
ret
<
0
)
{
if
(
rdev
->
supply
)
_regulator_put
(
rdev
->
supply
);
return
ret
;
}
...
...
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