Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'pm-6.0-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull power management fixes from Rafael Wysocki:
"These fix an uninitialized variable usage in the operating performance
points code and add missing DT bindings for it.

Specifics:

- Fix uninitialized variable usage in dev_pm_opp_config_clks_simple()
(Christophe JAILLET)

- Add missing OPP DT properties (Rob Herring)"

* tag 'pm-6.0-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
dt-bindings: opp: Add missing (unevaluated|additional)Properties on child nodes
OPP: Fix an un-initialized variable usage

+3 -1
+1
Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
··· 40 40 patternProperties: 41 41 '^opp-?[0-9]+$': 42 42 type: object 43 + additionalProperties: false 43 44 44 45 properties: 45 46 opp-hz: true
+1
Documentation/devicetree/bindings/opp/opp-v2-qcom-level.yaml
··· 19 19 patternProperties: 20 20 '^opp-?[0-9]+$': 21 21 type: object 22 + additionalProperties: false 22 23 23 24 properties: 24 25 opp-level: true
+1 -1
drivers/opp/core.c
··· 873 873 } 874 874 } 875 875 876 - return ret; 876 + return 0; 877 877 } 878 878 EXPORT_SYMBOL_GPL(dev_pm_opp_config_clks_simple); 879 879