treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / Documentation / devicetree / bindings / sound / name-prefix.txt
blob6457759086570626c78c11b6c1675534444a1662
1 Name prefix:
3 Card implementing the routing property define the connection between
4 audio components as list of string pair. Component using the same
5 sink/source names may use the name prefix property to prepend the
6 name of their sinks/sources with the provided string.
8 Optional name prefix property:
9 - sound-name-prefix : string using as prefix for the sink/source names of
10                       the component.
12 Example: Two instances of the same component.
14 amp0: analog-amplifier@0 {
15         compatible = "simple-audio-amplifier";
16         enable-gpios = <&gpio GPIOH_3 0>;
17         sound-name-prefix = "FRONT";
20 amp1: analog-amplifier@1 {
21         compatible = "simple-audio-amplifier";
22         enable-gpios = <&gpio GPIOH_4 0>;
23         sound-name-prefix = "BACK";