treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / Documentation / devicetree / bindings / input / pwm-beeper.txt
blob8fc0e48c20db2b2b31795e8f75c4b24257f9272f
1 * PWM beeper device tree bindings
3 Registers a PWM device as beeper.
5 Required properties:
6 - compatible: should be "pwm-beeper"
7 - pwms: phandle to the physical PWM device
9 Optional properties:
10 - amp-supply: phandle to a regulator that acts as an amplifier for the beeper
11 - beeper-hz:  bell frequency in Hz
13 Example:
15 beeper_amp: amplifier {
16         compatible = "fixed-regulator";
17         gpios = <&gpio0 1 GPIO_ACTIVE_HIGH>;
20 beeper {
21         compatible = "pwm-beeper";
22         pwms = <&pwm0>;
23         amp-supply = <&beeper_amp>;