Message ID | 20230503113112.1751886-3-alexander.stein@ew.tq-group.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/3] ARM: dts: imx6qdl-mba6: Add missing pvcie-supply regulator | expand |
Hi Shawn, Am Mittwoch, 3. Mai 2023, 13:31:12 CEST schrieb Alexander Stein: > Fixes the warnings: > at24 0-0057: supply vcc not found, using dummy regulator > lm75 0-0049: supply vs not found, using dummy regulator > > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com> You applied patch 1 & 2. Is something missing for this patch to be applied? Best regards, Alexander > --- > arch/arm/boot/dts/imx6qdl-mba6a.dtsi | 2 ++ > arch/arm/boot/dts/imx6qdl-mba6b.dtsi | 2 ++ > 2 files changed, 4 insertions(+) > > diff --git a/arch/arm/boot/dts/imx6qdl-mba6a.dtsi > b/arch/arm/boot/dts/imx6qdl-mba6a.dtsi index c3f3a25133ca..3ca028c2dbe9 > 100644 > --- a/arch/arm/boot/dts/imx6qdl-mba6a.dtsi > +++ b/arch/arm/boot/dts/imx6qdl-mba6a.dtsi > @@ -15,6 +15,7 @@ &i2c1 { > lm75: temperature-sensor@49 { > compatible = "national,lm75"; > reg = <0x49>; > + vs-supply = <®_mba6_3p3v>; > }; > > m24c64_57: eeprom@57 { > @@ -23,6 +24,7 @@ m24c64_57: eeprom@57 { > pagesize = <32>; > #address-cells = <1>; > #size-cells = <1>; > + vcc-supply = <®_mba6_3p3v>; > > mba_mac_address: mac-address@20 { > reg = <0x20 0x6>; > diff --git a/arch/arm/boot/dts/imx6qdl-mba6b.dtsi > b/arch/arm/boot/dts/imx6qdl-mba6b.dtsi index 85866cfed965..c97bd67462e7 > 100644 > --- a/arch/arm/boot/dts/imx6qdl-mba6b.dtsi > +++ b/arch/arm/boot/dts/imx6qdl-mba6b.dtsi > @@ -25,6 +25,7 @@ &i2c3 { > lm75: temperature-sensor@49 { > compatible = "national,lm75"; > reg = <0x49>; > + vs-supply = <®_mba6_3p3v>; > }; > > m24c64_57: eeprom@57 { > @@ -33,6 +34,7 @@ m24c64_57: eeprom@57 { > pagesize = <32>; > #address-cells = <1>; > #size-cells = <1>; > + vcc-supply = <®_mba6_3p3v>; > > mba_mac_address: mac-address@20 { > reg = <0x20 0x6>;
On Fri, Jun 16, 2023 at 11:42:19AM +0200, Alexander Stein wrote: > Hi Shawn, > > Am Mittwoch, 3. Mai 2023, 13:31:12 CEST schrieb Alexander Stein: > > Fixes the warnings: > > at24 0-0057: supply vcc not found, using dummy regulator > > lm75 0-0049: supply vs not found, using dummy regulator > > > > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com> > > You applied patch 1 & 2. Is something missing for this patch to be applied? Sorry. I missed it. Could you rebase and resend? Shawn
diff --git a/arch/arm/boot/dts/imx6qdl-mba6a.dtsi b/arch/arm/boot/dts/imx6qdl-mba6a.dtsi index c3f3a25133ca..3ca028c2dbe9 100644 --- a/arch/arm/boot/dts/imx6qdl-mba6a.dtsi +++ b/arch/arm/boot/dts/imx6qdl-mba6a.dtsi @@ -15,6 +15,7 @@ &i2c1 { lm75: temperature-sensor@49 { compatible = "national,lm75"; reg = <0x49>; + vs-supply = <®_mba6_3p3v>; }; m24c64_57: eeprom@57 { @@ -23,6 +24,7 @@ m24c64_57: eeprom@57 { pagesize = <32>; #address-cells = <1>; #size-cells = <1>; + vcc-supply = <®_mba6_3p3v>; mba_mac_address: mac-address@20 { reg = <0x20 0x6>; diff --git a/arch/arm/boot/dts/imx6qdl-mba6b.dtsi b/arch/arm/boot/dts/imx6qdl-mba6b.dtsi index 85866cfed965..c97bd67462e7 100644 --- a/arch/arm/boot/dts/imx6qdl-mba6b.dtsi +++ b/arch/arm/boot/dts/imx6qdl-mba6b.dtsi @@ -25,6 +25,7 @@ &i2c3 { lm75: temperature-sensor@49 { compatible = "national,lm75"; reg = <0x49>; + vs-supply = <®_mba6_3p3v>; }; m24c64_57: eeprom@57 { @@ -33,6 +34,7 @@ m24c64_57: eeprom@57 { pagesize = <32>; #address-cells = <1>; #size-cells = <1>; + vcc-supply = <®_mba6_3p3v>; mba_mac_address: mac-address@20 { reg = <0x20 0x6>;
Fixes the warnings: at24 0-0057: supply vcc not found, using dummy regulator lm75 0-0049: supply vs not found, using dummy regulator Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com> --- arch/arm/boot/dts/imx6qdl-mba6a.dtsi | 2 ++ arch/arm/boot/dts/imx6qdl-mba6b.dtsi | 2 ++ 2 files changed, 4 insertions(+)