1* Regulator Haptic Device Tree Bindings
2
3Required Properties:
4 - compatible : Should be "regulator-haptic"
5 - haptic-supply : Power supply to the haptic motor.
6	[*] refer Documentation/devicetree/bindings/regulator/regulator.txt
7
8 - max-microvolt : The maximum voltage value supplied to the haptic motor.
9		[The unit of the voltage is a micro]
10
11 - min-microvolt : The minimum voltage value supplied to the haptic motor.
12		[The unit of the voltage is a micro]
13
14Example:
15
16	haptics {
17		compatible = "regulator-haptic";
18		haptic-supply = <&motor_regulator>;
19		max-microvolt = <2700000>;
20		min-microvolt = <1100000>;
21	};
22