Commit 9614369a authored by Rafael J. Wysocki's avatar Rafael J. Wysocki

Merge tag 'opp-fixes-6.0' of git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm

Pull OPP fixes for 6.0 from Viresh Kumar:

"- Fix un-initialized variable usage (Christophe JAILLET).

 - Add missing DT properties (Rob Herring)."

* tag 'opp-fixes-6.0' of git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm:
  dt-bindings: opp: Add missing (unevaluated|additional)Properties on child nodes
  OPP: Fix an un-initialized variable usage
parents 521a547c c7e31e36
...@@ -40,6 +40,7 @@ properties: ...@@ -40,6 +40,7 @@ properties:
patternProperties: patternProperties:
'^opp-?[0-9]+$': '^opp-?[0-9]+$':
type: object type: object
additionalProperties: false
properties: properties:
opp-hz: true opp-hz: true
......
...@@ -19,6 +19,7 @@ properties: ...@@ -19,6 +19,7 @@ properties:
patternProperties: patternProperties:
'^opp-?[0-9]+$': '^opp-?[0-9]+$':
type: object type: object
additionalProperties: false
properties: properties:
opp-level: true opp-level: true
......
...@@ -873,7 +873,7 @@ int dev_pm_opp_config_clks_simple(struct device *dev, ...@@ -873,7 +873,7 @@ int dev_pm_opp_config_clks_simple(struct device *dev,
} }
} }
return ret; return 0;
} }
EXPORT_SYMBOL_GPL(dev_pm_opp_config_clks_simple); EXPORT_SYMBOL_GPL(dev_pm_opp_config_clks_simple);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment