treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / Documentation / devicetree / bindings / clock / qcom,krait-cc.txt
blob030ba60dab08c2cec03f3cbc85f638191d64111d
1 Krait Clock Controller
3 PROPERTIES
5 - compatible:
6         Usage: required
7         Value type: <string>
8         Definition: must be one of:
9                         "qcom,krait-cc-v1"
10                         "qcom,krait-cc-v2"
12 - #clock-cells:
13         Usage: required
14         Value type: <u32>
15         Definition: must be 1
17 - clocks:
18         Usage: required
19         Value type: <prop-encoded-array>
20         Definition: reference to the clock parents of hfpll, secondary muxes.
22 - clock-names:
23         Usage: required
24         Value type: <stringlist>
25         Definition: must be "hfpll0", "hfpll1", "acpu0_aux", "acpu1_aux", "qsb".
27 Example:
29         kraitcc: clock-controller {
30                 compatible = "qcom,krait-cc-v1";
31                 clocks = <&hfpll0>, <&hfpll1>, <&acpu0_aux>, <&acpu1_aux>, <qsb>;
32                 clock-names = "hfpll0", "hfpll1", "acpu0_aux", "acpu1_aux", "qsb";
33                 #clock-cells = <1>;
34         };