[PATCH v7 09/22] ARM: dts: qcom: ipq4019: use SoC-specific compatibles for SAW2 devices

Dmitry Baryshkov posted 22 patches 1 year, 9 months ago
[PATCH v7 09/22] ARM: dts: qcom: ipq4019: use SoC-specific compatibles for SAW2 devices
Posted by Dmitry Baryshkov 1 year, 9 months ago
There is no such thing as a generic 'SAW2' device. Use device-specific
compatible strings to describe the SAW2 devices.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 arch/arm/boot/dts/qcom/qcom-ipq4019.dtsi | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/arch/arm/boot/dts/qcom/qcom-ipq4019.dtsi b/arch/arm/boot/dts/qcom/qcom-ipq4019.dtsi
index f989bd741cd1..948c6fd91f62 100644
--- a/arch/arm/boot/dts/qcom/qcom-ipq4019.dtsi
+++ b/arch/arm/boot/dts/qcom/qcom-ipq4019.dtsi
@@ -351,31 +351,31 @@ acc3: power-manager@b0b8000 {
 		};
 
 		saw0: regulator@b089000 {
-			compatible = "qcom,saw2";
+			compatible = "qcom,ipq4019-saw2-cpu", "qcom,saw2";
 			reg = <0x0b089000 0x1000>, <0x0b009000 0x1000>;
 			regulator;
 		};
 
 		saw1: regulator@b099000 {
-			compatible = "qcom,saw2";
+			compatible = "qcom,ipq4019-saw2-cpu", "qcom,saw2";
 			reg = <0x0b099000 0x1000>, <0x0b009000 0x1000>;
 			regulator;
 		};
 
 		saw2: regulator@b0a9000 {
-			compatible = "qcom,saw2";
+			compatible = "qcom,ipq4019-saw2-cpu", "qcom,saw2";
 			reg = <0x0b0a9000 0x1000>, <0x0b009000 0x1000>;
 			regulator;
 		};
 
 		saw3: regulator@b0b9000 {
-			compatible = "qcom,saw2";
+			compatible = "qcom,ipq4019-saw2-cpu", "qcom,saw2";
 			reg = <0x0b0b9000 0x1000>, <0x0b009000 0x1000>;
 			regulator;
 		};
 
 		saw_l2: regulator@b012000 {
-			compatible = "qcom,saw2";
+			compatible = "qcom,ipq4019-saw2-l2", "qcom,saw2";
 			reg = <0xb012000 0x1000>;
 			regulator;
 		};

-- 
2.39.2
Re: [PATCH v7 09/22] ARM: dts: qcom: ipq4019: use SoC-specific compatibles for SAW2 devices
Posted by Konrad Dybcio 1 year, 9 months ago
On 2.01.2024 06:17, Dmitry Baryshkov wrote:
> There is no such thing as a generic 'SAW2' device. Use device-specific
> compatible strings to describe the SAW2 devices.
> 
> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad