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.

at v4.17-rc4 34 lines 792 B view raw
1Motorola CPCAP PMIC voltage regulators 2------------------------------------ 3 4Requires node properties: 5- "compatible" value one of: 6 "motorola,cpcap-regulator" 7 "motorola,mapphone-cpcap-regulator" 8 9Required regulator properties: 10- "regulator-name" 11- "regulator-enable-ramp-delay" 12- "regulator-min-microvolt" 13- "regulator-max-microvolt" 14 15Optional regulator properties: 16- "regulator-boot-on" 17 18See Documentation/devicetree/bindings/regulator/regulator.txt 19for more details about the regulator properties. 20 21Example: 22 23cpcap_regulator: regulator { 24 compatible = "motorola,cpcap-regulator"; 25 26 cpcap_regulators: regulators { 27 sw5: SW5 { 28 regulator-min-microvolt = <5050000>; 29 regulator-max-microvolt = <5050000>; 30 regulator-enable-ramp-delay = <50000>; 31 regulator-boot-on; 32 }; 33 }; 34};