It makes no sense to require one more step to enable the PMIC features. If the PMIC is present, it already has to be explicitly #included anyway. Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org> Link: https://lore.kernel.org/r/20210225213842.117694-1-konrad.dybcio@somainline.org Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
25 lines
518 B
Plaintext
25 lines
518 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
#include <dt-bindings/spmi/spmi.h>
|
|
|
|
&spmi_bus {
|
|
|
|
pm8004_lsid4: pmic@4 {
|
|
compatible = "qcom,pm8004", "qcom,spmi-pmic";
|
|
reg = <0x4 SPMI_USID>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
};
|
|
|
|
pm8004_lsid5: pmic@5 {
|
|
compatible = "qcom,pm8004", "qcom,spmi-pmic";
|
|
reg = <0x5 SPMI_USID>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
pm8004_spmi_regulators: regulators {
|
|
compatible = "qcom,pm8004-regulators";
|
|
};
|
|
};
|
|
};
|