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
334a8208
Commit
334a8208
authored
Dec 13, 2013
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'regulator/topic/constraints' into regulator-linus
parents
67cc6885
75bc9641
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
drivers/regulator/core.c
drivers/regulator/core.c
+8
-3
No files found.
drivers/regulator/core.c
View file @
334a8208
...
@@ -119,6 +119,11 @@ static const char *rdev_get_name(struct regulator_dev *rdev)
...
@@ -119,6 +119,11 @@ static const char *rdev_get_name(struct regulator_dev *rdev)
return
""
;
return
""
;
}
}
static
bool
have_full_constraints
(
void
)
{
return
has_full_constraints
||
of_have_populated_dt
();
}
/**
/**
* of_get_regulator - get a regulator device node based on supply name
* of_get_regulator - get a regulator device node based on supply name
* @dev: Device pointer for the consumer (of regulator) device
* @dev: Device pointer for the consumer (of regulator) device
...
@@ -1340,7 +1345,7 @@ static struct regulator *_regulator_get(struct device *dev, const char *id,
...
@@ -1340,7 +1345,7 @@ static struct regulator *_regulator_get(struct device *dev, const char *id,
* Assume that a regulator is physically present and enabled
* Assume that a regulator is physically present and enabled
* even if it isn't hooked up and just provide a dummy.
* even if it isn't hooked up and just provide a dummy.
*/
*/
if
(
ha
s_full_constraints
&&
allow_dummy
)
{
if
(
ha
ve_full_constraints
()
&&
allow_dummy
)
{
pr_warn
(
"%s supply %s not found, using dummy regulator
\n
"
,
pr_warn
(
"%s supply %s not found, using dummy regulator
\n
"
,
devname
,
id
);
devname
,
id
);
...
@@ -3627,7 +3632,7 @@ int regulator_suspend_finish(void)
...
@@ -3627,7 +3632,7 @@ int regulator_suspend_finish(void)
if
(
error
)
if
(
error
)
ret
=
error
;
ret
=
error
;
}
else
{
}
else
{
if
(
!
ha
s_full_constraints
)
if
(
!
ha
ve_full_constraints
()
)
goto
unlock
;
goto
unlock
;
if
(
!
ops
->
disable
)
if
(
!
ops
->
disable
)
goto
unlock
;
goto
unlock
;
...
@@ -3825,7 +3830,7 @@ static int __init regulator_init_complete(void)
...
@@ -3825,7 +3830,7 @@ static int __init regulator_init_complete(void)
if
(
!
enabled
)
if
(
!
enabled
)
goto
unlock
;
goto
unlock
;
if
(
ha
s_full_constraints
)
{
if
(
ha
ve_full_constraints
()
)
{
/* We log since this may kill the system if it
/* We log since this may kill the system if it
* goes wrong. */
* goes wrong. */
rdev_info
(
rdev
,
"disabling
\n
"
);
rdev_info
(
rdev
,
"disabling
\n
"
);
...
...
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