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
7cd94843
Commit
7cd94843
authored
Jan 23, 2014
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'regulator/topic/core' into regulator-linus
parents
7e22e911
0d25d09d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
8 deletions
+7
-8
drivers/regulator/core.c
drivers/regulator/core.c
+7
-8
No files found.
drivers/regulator/core.c
View file @
7cd94843
...
...
@@ -1334,9 +1334,8 @@ static struct regulator *_regulator_get(struct device *dev, const char *id,
* If we have return value from dev_lookup fail, we do not expect to
* succeed, so, quit with appropriate error value
*/
if
(
ret
&&
ret
!=
-
ENODEV
)
{
if
(
ret
&&
ret
!=
-
ENODEV
)
goto
out
;
}
if
(
!
devname
)
devname
=
"deviceless"
;
...
...
@@ -1351,7 +1350,8 @@ static struct regulator *_regulator_get(struct device *dev, const char *id,
rdev
=
dummy_regulator_rdev
;
goto
found
;
}
else
{
/* Don't log an error when called from regulator_get_optional() */
}
else
if
(
!
have_full_constraints
()
||
exclusive
)
{
dev_err
(
dev
,
"dummy supplies not allowed
\n
"
);
}
...
...
@@ -2244,7 +2244,7 @@ int regulator_is_supported_voltage(struct regulator *regulator,
if
(
!
(
rdev
->
constraints
->
valid_ops_mask
&
REGULATOR_CHANGE_VOLTAGE
))
{
ret
=
regulator_get_voltage
(
regulator
);
if
(
ret
>=
0
)
return
(
min_uV
<=
ret
&&
ret
<=
max_uV
)
;
return
min_uV
<=
ret
&&
ret
<=
max_uV
;
else
return
ret
;
}
...
...
@@ -2416,7 +2416,7 @@ int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
ret
=
regulator_check_voltage
(
rdev
,
&
min_uV
,
&
max_uV
);
if
(
ret
<
0
)
goto
out
;
/* restore original values in case of error */
old_min_uV
=
regulator
->
min_uV
;
old_max_uV
=
regulator
->
max_uV
;
...
...
@@ -2430,7 +2430,7 @@ int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
ret
=
_regulator_do_set_voltage
(
rdev
,
min_uV
,
max_uV
);
if
(
ret
<
0
)
goto
out2
;
out:
mutex_unlock
(
&
rdev
->
mutex
);
return
ret
;
...
...
@@ -3835,9 +3835,8 @@ static int __init regulator_init_complete(void)
* goes wrong. */
rdev_info
(
rdev
,
"disabling
\n
"
);
ret
=
ops
->
disable
(
rdev
);
if
(
ret
!=
0
)
{
if
(
ret
!=
0
)
rdev_err
(
rdev
,
"couldn't disable: %d
\n
"
,
ret
);
}
}
else
{
/* The intention is that in future we will
* assume that full constraints are provided
...
...
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