[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220331211653.175200-2-krzysztof.kozlowski@linaro.org>
Date: Thu, 31 Mar 2022 23:16:53 +0200
From: Krzysztof Kozlowski <krzysztof.kozlowski@...aro.org>
To: Liam Girdwood <lgirdwood@...il.com>,
Mark Brown <broonie@...nel.org>,
Rob Herring <robh+dt@...nel.org>,
Krzysztof Kozlowski <krzk+dt@...nel.org>,
Alim Akhtar <alim.akhtar@...sung.com>,
linux-kernel@...r.kernel.org, devicetree@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org,
linux-samsung-soc@...r.kernel.org
Cc: Krzysztof Kozlowski <krzysztof.kozlowski@...aro.org>,
Geert Uytterhoeven <geert@...ux-m68k.org>
Subject: [PATCH 2/2] ARM: dts: exynos: correct array of voltages in i9100 and Trats
Array of uint32 numbers (voltages) should be within one bracket pair <>,
according to Devicetree types and DT schema.
This fixes DT schema warnings like:
exynos4210-trats.dtb: pmic@66: max8997,pmic-buck1-dvs-voltage: [[1350000, 1300000, 1250000, 1200000, 1150000, 1100000, 1000000, 950000]] is too short
From schema: Documentation/devicetree/bindings/regulator/maxim,max8997.yaml
Reported-by: Geert Uytterhoeven <geert@...ux-m68k.org>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@...aro.org>
---
arch/arm/boot/dts/exynos4210-i9100.dts | 28 +++++++++++++-------------
arch/arm/boot/dts/exynos4210-trats.dts | 28 +++++++++++++-------------
2 files changed, 28 insertions(+), 28 deletions(-)
diff --git a/arch/arm/boot/dts/exynos4210-i9100.dts b/arch/arm/boot/dts/exynos4210-i9100.dts
index 3c0a18b30837..4058e780e288 100644
--- a/arch/arm/boot/dts/exynos4210-i9100.dts
+++ b/arch/arm/boot/dts/exynos4210-i9100.dts
@@ -421,20 +421,20 @@ pmic@66 {
<&gpx0 6 GPIO_ACTIVE_HIGH>,
<&gpl0 0 GPIO_ACTIVE_HIGH>;
- max8997,pmic-buck1-dvs-voltage = <1350000>, <1300000>,
- <1250000>, <1200000>,
- <1150000>, <1100000>,
- <1000000>, <950000>;
-
- max8997,pmic-buck2-dvs-voltage = <1100000>, <1000000>,
- <950000>, <900000>,
- <1100000>, <1000000>,
- <950000>, <900000>;
-
- max8997,pmic-buck5-dvs-voltage = <1200000>, <1200000>,
- <1200000>, <1200000>,
- <1200000>, <1200000>,
- <1200000>, <1200000>;
+ max8997,pmic-buck1-dvs-voltage = <1350000 1300000
+ 1250000 1200000
+ 1150000 1100000
+ 1000000 950000>;
+
+ max8997,pmic-buck2-dvs-voltage = <1100000 1000000
+ 950000 900000
+ 1100000 1000000
+ 950000 900000>;
+
+ max8997,pmic-buck5-dvs-voltage = <1200000 1200000
+ 1200000 1200000
+ 1200000 1200000
+ 1200000 1200000>;
pinctrl-0 = <&max8997_irq>, <&otg_gp>, <&usb_sel>;
pinctrl-names = "default";
diff --git a/arch/arm/boot/dts/exynos4210-trats.dts b/arch/arm/boot/dts/exynos4210-trats.dts
index 01f44d95f671..23041db78f2e 100644
--- a/arch/arm/boot/dts/exynos4210-trats.dts
+++ b/arch/arm/boot/dts/exynos4210-trats.dts
@@ -302,20 +302,20 @@ pmic@66 {
<&gpx0 6 GPIO_ACTIVE_HIGH>,
<&gpl0 0 GPIO_ACTIVE_HIGH>;
- max8997,pmic-buck1-dvs-voltage = <1350000>, <1300000>,
- <1250000>, <1200000>,
- <1150000>, <1100000>,
- <1000000>, <950000>;
-
- max8997,pmic-buck2-dvs-voltage = <1100000>, <1000000>,
- <950000>, <900000>,
- <1100000>, <1000000>,
- <950000>, <900000>;
-
- max8997,pmic-buck5-dvs-voltage = <1200000>, <1200000>,
- <1200000>, <1200000>,
- <1200000>, <1200000>,
- <1200000>, <1200000>;
+ max8997,pmic-buck1-dvs-voltage = <1350000 1300000
+ 1250000 1200000
+ 1150000 1100000
+ 1000000 950000>;
+
+ max8997,pmic-buck2-dvs-voltage = <1100000 1000000
+ 950000 900000
+ 1100000 1000000
+ 950000 900000>;
+
+ max8997,pmic-buck5-dvs-voltage = <1200000 1200000
+ 1200000 1200000
+ 1200000 1200000
+ 1200000 1200000>;
regulators {
valive_reg: LDO2 {
--
2.32.0
Powered by blists - more mailing lists