Skip to content

Commit 33f4ac1

Browse files
jhovoldalexandrebelloni
authored andcommitted
dt-bindings: rtc: qcom-pm8xxx: fix inconsistent example
The PM8921 is an SSBI PMIC but in the binding example it is described as being part of an SPMI PMIC while using an SSBI address. Make the example consistent by using the sibling PM8941 SPMI PMIC instead. Fixes: 8138c5f ("dt-bindings: rtc: qcom-pm8xxx-rtc: Add qcom pm8xxx rtc bindings") Signed-off-by: Johan Hovold <johan+linaro@kernel.org> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Link: https://lore.kernel.org/r/20231130173223.12794-1-johan+linaro@kernel.org Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
1 parent 2f80de6 commit 33f4ac1

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -61,27 +61,27 @@ additionalProperties: false
6161

6262
examples:
6363
- |
64+
#include <dt-bindings/interrupt-controller/irq.h>
6465
#include <dt-bindings/spmi/spmi.h>
65-
spmi_bus: spmi@c440000 {
66-
reg = <0x0c440000 0x1100>;
67-
#address-cells = <2>;
68-
#size-cells = <0>;
69-
pmicintc: pmic@0 {
70-
reg = <0x0 SPMI_USID>;
71-
compatible = "qcom,pm8921";
72-
interrupts = <104 8>;
73-
#interrupt-cells = <2>;
74-
interrupt-controller;
75-
#address-cells = <1>;
66+
67+
spmi {
68+
#address-cells = <2>;
7669
#size-cells = <0>;
7770
78-
pm8921_rtc: rtc@11d {
79-
compatible = "qcom,pm8921-rtc";
80-
reg = <0x11d>;
81-
interrupts = <0x27 0>;
82-
nvmem-cells = <&rtc_offset>;
83-
nvmem-cell-names = "offset";
71+
pmic@0 {
72+
compatible = "qcom,pm8941", "qcom,spmi-pmic";
73+
reg = <0x0 SPMI_USID>;
74+
#address-cells = <1>;
75+
#size-cells = <0>;
76+
77+
rtc@6000 {
78+
compatible = "qcom,pm8941-rtc";
79+
reg = <0x6000>, <0x6100>;
80+
reg-names = "rtc", "alarm";
81+
interrupts = <0x0 0x61 0x1 IRQ_TYPE_EDGE_RISING>;
82+
nvmem-cells = <&rtc_offset>;
83+
nvmem-cell-names = "offset";
84+
};
8485
};
85-
};
8686
};
8787
...

0 commit comments

Comments
 (0)