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
ac5d2f04
Commit
ac5d2f04
authored
Aug 15, 2022
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'regulator/for-5.20' into regulator-6.0
parents
568035b0
d511e8a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
12 deletions
+1
-12
Documentation/devicetree/bindings/regulator/nxp,pca9450-regulator.yaml
.../devicetree/bindings/regulator/nxp,pca9450-regulator.yaml
+0
-11
drivers/regulator/core.c
drivers/regulator/core.c
+1
-1
No files found.
Documentation/devicetree/bindings/regulator/nxp,pca9450-regulator.yaml
View file @
ac5d2f04
...
...
@@ -47,12 +47,6 @@ properties:
description
:
Properties for single LDO regulator.
properties
:
regulator-name
:
pattern
:
"
^LDO[1-5]$"
description
:
should be "LDO1", ..., "LDO5"
unevaluatedProperties
:
false
"
^BUCK[1-6]$"
:
...
...
@@ -62,11 +56,6 @@ properties:
Properties for single BUCK regulator.
properties
:
regulator-name
:
pattern
:
"
^BUCK[1-6]$"
description
:
should be "BUCK1", ..., "BUCK6"
nxp,dvs-run-voltage
:
$ref
:
"
/schemas/types.yaml#/definitions/uint32"
minimum
:
600000
...
...
drivers/regulator/core.c
View file @
ac5d2f04
...
...
@@ -4784,10 +4784,10 @@ int regulator_bulk_get(struct device *dev, int num_consumers,
consumers
[
i
].
consumer
=
regulator_get
(
dev
,
consumers
[
i
].
supply
);
if
(
IS_ERR
(
consumers
[
i
].
consumer
))
{
consumers
[
i
].
consumer
=
NULL
;
ret
=
dev_err_probe
(
dev
,
PTR_ERR
(
consumers
[
i
].
consumer
),
"Failed to get supply '%s'"
,
consumers
[
i
].
supply
);
consumers
[
i
].
consumer
=
NULL
;
goto
err
;
}
...
...
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